diff options
Diffstat (limited to 'include/engine.h')
-rw-r--r-- | include/engine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/engine.h b/include/engine.h index 1d19ec5..d7e05e0 100644 --- a/include/engine.h +++ b/include/engine.h @@ -30,16 +30,16 @@ * config: Config of the ingested file */ typedef struct { - list_t *content_headers; - config_t *config; + list_t *content_headers; + config_t *config; } engine_t; /* * An atom is a single iteration of an EACHDO. */ typedef struct { - char *content; - int priority; + char *content; + int priority; } atom_t; engine_t *engine_ingest(char **buffer); |