Volksdata 1.0b10
RDF library
Loading...
Searching...
No Matches
parser_ttl.h
Go to the documentation of this file.
1#ifndef VOLK_PARSER_TTL_H
2#define VOLK_PARSER_TTL_H
3
5
6
11
13typedef struct ttl_parser_state {
14 VOLK_GraphIterator * it;
17 size_t ct;
20
21
34ttl_parse_doc (FILE *fh, const char *sh, VOLK_Graph *gr);
35
37
38#endif
Codec interface definition and basic elements common to all codecs.
int VOLK_rc
Return code.
Definition core.h:91
VOLK_rc ttl_parse_doc(FILE *fh, const char *sh, VOLK_Graph *gr)
Parse an RDF document in Turtle format.
Parser state.
Definition parser_ttl.h:13
VOLK_GraphIterator * it
Iterator used to build the graph.
Definition parser_ttl.h:14
VOLK_rc rc
Internal return code.
Definition parser_ttl.h:18
size_t ct
Statements parsed.
Definition parser_ttl.h:17
VOLK_Term * base
Base IRI used in the document.
Definition parser_ttl.h:15
VOLK_Term * lms
Link map subject.
Definition parser_ttl.h:16
RDF term.
Definition term.h:61