aboutsummaryrefslogtreecommitdiffstats
path: root/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-05-27 15:32:12 +0200
committerDavid Robillard <d@drobilla.net>2019-12-19 20:55:16 -0500
commitadaaacc4514f3c16c48a6260cbe2a8ff692d6b83 (patch)
tree7ffcc5af8ecb764c098c6c2566dde43f1a9d0c98 /serd
parent55ef65f6e1fd6e839a6b8cc89bc8ed3c6a069ec3 (diff)
downloadserd-adaaacc4514f3c16c48a6260cbe2a8ff692d6b83.tar.gz
serd-adaaacc4514f3c16c48a6260cbe2a8ff692d6b83.tar.bz2
serd-adaaacc4514f3c16c48a6260cbe2a8ff692d6b83.zip
Move syntax name/extension utilities to public API
Diffstat (limited to 'serd')
-rw-r--r--serd/serd.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/serd/serd.h b/serd/serd.h
index 497f172f..da6fbc7e 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -399,6 +399,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
@{
*/