miller/c/cli/comment_handling.h
2018-01-01 14:24:22 -05:00

10 lines
194 B
C

#ifndef COMMENT_HANDLING_H
#define COMMENT_HANDLING_H
typedef enum _comment_handling_t {
PASS_COMMENTS,
SKIP_COMMENTS,
COMMENTS_ARE_DATA,
} comment_handling_t;
#endif // COMMENT_HANDLING_H