mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-24 02:36:15 +00:00
13 lines
191 B
C
13 lines
191 B
C
#ifndef QUOTING_H
|
|
#define QUOTING_H
|
|
|
|
typedef enum _quoting_t {
|
|
QUOTE_ALL,
|
|
QUOTE_NONE,
|
|
QUOTE_MINIMAL,
|
|
QUOTE_NUMERIC,
|
|
QUOTE_ORIGINAL,
|
|
QUOTE_UNSPECIFIED,
|
|
} quoting_t;
|
|
|
|
#endif // QUOTING_H
|