mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 18:25:45 +00:00
11 lines
257 B
C
11 lines
257 B
C
#ifndef JSON_ARRAY_INGEST_H
|
|
#define JSON_ARRAY_INGEST_H
|
|
|
|
typedef enum _json_array_ingest_t {
|
|
JSON_ARRAY_INGEST_UNSPECIFIED,
|
|
JSON_ARRAY_INGEST_FATAL,
|
|
JSON_ARRAY_INGEST_SKIP,
|
|
JSON_ARRAY_INGEST_AS_MAP,
|
|
} json_array_ingest_t;
|
|
|
|
#endif // JSON_ARRAY_INGEST_H
|