aboutsummaryrefslogtreecommitdiffstats
path: root/serd/serd.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-07-05 21:01:12 +0200
committerDavid Robillard <d@drobilla.net>2020-06-21 18:12:04 +0200
commitaa65756284ba705a6d2e33a6fd1dca76a1602a88 (patch)
tree9ebb0138ef51c4209f2ee334407068c46c227506 /serd/serd.h
parenta0d356d595f3c4a016828df830161fbb17e967a9 (diff)
downloadserd-aa65756284ba705a6d2e33a6fd1dca76a1602a88.tar.gz
serd-aa65756284ba705a6d2e33a6fd1dca76a1602a88.tar.bz2
serd-aa65756284ba705a6d2e33a6fd1dca76a1602a88.zip
Simplify writer style options
Diffstat (limited to 'serd/serd.h')
-rw-r--r--serd/serd.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/serd/serd.h b/serd/serd.h
index 6a5bd1a1..56534571 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -295,11 +295,8 @@ typedef struct {
always ASCII).
*/
typedef enum {
- SERD_STYLE_ABBREVIATED = 1, /**< Abbreviate triples when possible. */
- SERD_STYLE_ASCII = 1 << 1, /**< Escape all non-ASCII characters. */
- SERD_STYLE_RESOLVED = 1 << 2, /**< Resolve URIs against base URI. */
- SERD_STYLE_CURIED = 1 << 3, /**< Shorten URIs into CURIEs. */
- SERD_STYLE_BULK = 1 << 4 /**< Write output in pages. */
+ SERD_STYLE_ASCII = 1 << 0, /**< Escape all non-ASCII characters. */
+ SERD_STYLE_BULK = 1 << 1 /**< Write output in pages. */
} SerdStyle;
/**