repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isl_union_*_coalesce_entry: improve error handling
[isl.git]
/
isl_yaml.h
blob
4d2c442ac505681ab861a9461743606128f637b4
1
#ifndef ISL_YAML_H
2
#define ISL_YAML_H
3
4
#define ISL_YAML_INDENT_FLOW -1
5
6
enum
isl_yaml_state
{
7
isl_yaml_none
,
8
isl_yaml_mapping_first_key_start
,
9
isl_yaml_mapping_key_start
,
10
isl_yaml_mapping_key
,
11
isl_yaml_mapping_val_start
,
12
isl_yaml_mapping_val
,
13
isl_yaml_sequence_first_start
,
14
isl_yaml_sequence_start
,
15
isl_yaml_sequence
16
};
17
18
#endif