aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-12-29 20:05:00 -0500
committerDavid Robillard <d@drobilla.net>2018-12-31 11:37:49 -0500
commitbeb2eba61195d6ef838cd3bfd363ae74785aaff9 (patch)
treea1d201d9e324c3babc3d36023b1a31c4a0d2c969 /src/writer.c
parent201888d97b1382632fcd7b335c37030c8a4922d8 (diff)
downloadserd-beb2eba61195d6ef838cd3bfd363ae74785aaff9.tar.gz
serd-beb2eba61195d6ef838cd3bfd363ae74785aaff9.tar.bz2
serd-beb2eba61195d6ef838cd3bfd363ae74785aaff9.zip
Rename SerdStyle to SerdWriterFlags
Diffstat (limited to 'src/writer.c')
-rw-r--r--src/writer.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/writer.c b/src/writer.c
index ccae595b..48979423 100644
--- a/src/writer.c
+++ b/src/writer.c
@@ -103,7 +103,7 @@ struct SerdWriterImpl {
SerdWorld* world;
SerdSink iface;
SerdSyntax syntax;
- SerdStyleFlags style;
+ SerdWriterFlags flags;
SerdEnv* env;
SerdNode* root_node;
SerdURI root_uri;
@@ -194,7 +194,7 @@ write_character(SerdWriter* writer, const uint8_t* utf8, size_t* size)
break;
}
- if (!(writer->style & SERD_STYLE_ASCII)) {
+ if (!(writer->flags & SERD_STYLE_ASCII)) {
// Write UTF-8 character directly to UTF-8 output
return sink(utf8, *size, writer);
}
@@ -903,18 +903,18 @@ serd_writer_finish(SerdWriter* writer)
}
SerdWriter*
-serd_writer_new(SerdWorld* world,
- SerdSyntax syntax,
- SerdStyleFlags style,
- SerdEnv* env,
- SerdWriteFunc write_func,
- void* stream)
+serd_writer_new(SerdWorld* world,
+ SerdSyntax syntax,
+ SerdWriterFlags flags,
+ SerdEnv* env,
+ SerdWriteFunc write_func,
+ void* stream)
{
const WriteContext context = WRITE_CONTEXT_NULL;
SerdWriter* writer = (SerdWriter*)calloc(1, sizeof(SerdWriter));
writer->world = world;
writer->syntax = syntax;
- writer->style = style;
+ writer->flags = flags;
writer->env = env;
writer->root_node = NULL;
writer->root_uri = SERD_URI_NULL;