mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-19 01:15:21 +00:00
10 lines
194 B
C
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
|