diff options
Diffstat (limited to 'serd')
-rw-r--r-- | serd/serd.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/serd/serd.h b/serd/serd.h index 5304afa1..26630614 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -406,6 +406,42 @@ typedef size_t (*SerdWriteFunc)(const void* buf, /** @} + @name Syntax Utilities + @{ +*/ + +/** + Get a syntax by name. + + Case-insensitive, supports "Turtle", "NTriples", "NQuads", and "TriG". Zero + is returned if the name is not recognized. +*/ +SERD_API +SerdSyntax +serd_syntax_by_name(const char* name); + +/** + Guess a syntax from a filename. + + This uses the file extension to guess the syntax of a file. Zero is + returned if the extension is not recognized. +*/ +SERD_API +SerdSyntax +serd_guess_syntax(const char* filename); + +/** + Guess a syntax from a filename. + + This uses the file extension to guess the syntax of a file. Zero is + returned if the extension is not recognized. +*/ +SERD_API +bool +serd_syntax_has_graphs(SerdSyntax syntax); + +/** + @} @name URI @{ */ |