aboutsummaryrefslogtreecommitdiffstats
path: root/serd/serd.h
diff options
context:
space:
mode:
Diffstat (limited to 'serd/serd.h')
-rw-r--r--serd/serd.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/serd/serd.h b/serd/serd.h
index a5b28676..ce0213a7 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -110,7 +110,8 @@ typedef enum {
SERD_ERR_INTERNAL, ///< Unexpected internal error (should not happen)
SERD_ERR_OVERFLOW, ///< Stack overflow
SERD_ERR_INVALID, ///< Invalid data
- SERD_ERR_NO_DATA ///< Unexpected end of input
+ SERD_ERR_NO_DATA, ///< Unexpected end of input
+ SERD_ERR_BAD_WRITE ///< Error writing to file/stream
} SerdStatus;
/// RDF syntax type
@@ -262,8 +263,9 @@ typedef struct {
always ASCII).
*/
typedef enum {
- SERD_WRITE_ASCII = 1 << 0, ///< Escape all non-ASCII characters
- SERD_WRITE_TERSE = 1 << 1, ///< Write terser output without newlines
+ SERD_WRITE_ASCII = 1 << 0, ///< Escape all non-ASCII characters
+ SERD_WRITE_TERSE = 1 << 1, ///< Write terser output without newlines
+ SERD_WRITE_STRICT = 1 << 2, ///< Abort with error on lossy output
} SerdWriterFlag;
/// Bitwise OR of SerdWriterFlag values