diff options
Diffstat (limited to 'src/writer.c')
-rw-r--r-- | src/writer.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/writer.c b/src/writer.c index 9881f00f..31050853 100644 --- a/src/writer.c +++ b/src/writer.c @@ -14,7 +14,11 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "byte_sink.h" #include "serd_internal.h" +#include "stack.h" +#include "string_utils.h" +#include "uri_utils.h" #include "serd/serd.h" @@ -26,6 +30,14 @@ #include <stdlib.h> #include <string.h> +typedef enum { + FIELD_NONE, + FIELD_SUBJECT, + FIELD_PREDICATE, + FIELD_OBJECT, + FIELD_GRAPH +} Field; + typedef struct { SerdNode graph; SerdNode subject; |