aboutsummaryrefslogtreecommitdiffstats
path: root/tools/console.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-08-30 20:43:05 -0400
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:08 -0500
commit258ea2ff59bbd2127ea446cf4b9676ad3d7fe53d (patch)
treed7be35c7b4b3d466049352f2975e2c88c298f4b8 /tools/console.h
parentb13ad41a4d65b577b4db67660a9edf3056bdf7af (diff)
downloadserd-258ea2ff59bbd2127ea446cf4b9676ad3d7fe53d.tar.gz
serd-258ea2ff59bbd2127ea446cf4b9676ad3d7fe53d.tar.bz2
serd-258ea2ff59bbd2127ea446cf4b9676ad3d7fe53d.zip
Use ZixStringView directly
Diffstat (limited to 'tools/console.h')
-rw-r--r--tools/console.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/console.h b/tools/console.h
index ed59264a..7e59862d 100644
--- a/tools/console.h
+++ b/tools/console.h
@@ -12,10 +12,10 @@
#include "serd/reader.h"
#include "serd/sink.h"
#include "serd/status.h"
-#include "serd/string_view.h"
#include "serd/syntax.h"
#include "serd/world.h"
#include "serd/writer.h"
+#include "zix/string_view.h"
#include <stdbool.h>
#include <stdint.h>
@@ -89,7 +89,7 @@ SerdStatus
serd_get_size_argument(OptionIter* iter, size_t* argument);
SerdStatus
-serd_set_input_option(SerdStringView name,
+serd_set_input_option(ZixStringView name,
SerdSyntax* syntax,
SerdReaderFlags* flags);
@@ -97,7 +97,7 @@ SerdStatus
serd_parse_input_argument(OptionIter* iter, SerdSyntaxOptions* options);
SerdStatus
-serd_set_output_option(SerdStringView name,
+serd_set_output_option(ZixStringView name,
SerdSyntax* syntax,
SerdWriterFlags* flags);