From c7dfad1db675f417b09fd3748473b26cc0ea85be Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Jan 2011 08:16:49 +0000 Subject: SerdNodeType => SerdType. git-svn-id: http://svn.drobilla.net/serd/trunk@43 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- src/writer.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src/writer.c') diff --git a/src/writer.c b/src/writer.c index 3e91bcd2..aa9b7b76 100644 --- a/src/writer.c +++ b/src/writer.c @@ -33,16 +33,16 @@ static const WriteContext WRITE_CONTEXT_NULL = { 0, 0, 0 }; typedef bool (*StatementWriter)(SerdWriter writer, const SerdString* graph, const SerdString* subject, - SerdNodeType subject_type, + SerdType subject_type, const SerdString* predicate, - SerdNodeType predicate_type, + SerdType predicate_type, const SerdString* object, - SerdNodeType object_type, + SerdType object_type, const SerdString* object_datatype, const SerdString* object_lang); typedef bool (*NodeWriter)(SerdWriter writer, - SerdNodeType type, + SerdType type, const SerdString* str, const SerdString* datatype, const SerdString* lang); @@ -183,7 +183,7 @@ serd_writer_write_delim(SerdWriter writer, const uint8_t delim) static bool write_node(SerdWriter writer, - SerdNodeType type, + SerdType type, const SerdString* str, const SerdString* datatype, const SerdString* lang) @@ -266,11 +266,11 @@ bool serd_writer_write_statement(SerdWriter writer, const SerdString* graph, const SerdString* subject, - SerdNodeType subject_type, + SerdType subject_type, const SerdString* predicate, - SerdNodeType predicate_type, + SerdType predicate_type, const SerdString* object, - SerdNodeType object_type, + SerdType object_type, const SerdString* object_datatype, const SerdString* object_lang) { @@ -285,11 +285,11 @@ static bool serd_writer_write_statement_abbrev(SerdWriter writer, const SerdString* graph, const SerdString* subject, - SerdNodeType subject_type, + SerdType subject_type, const SerdString* predicate, - SerdNodeType predicate_type, + SerdType predicate_type, const SerdString* object, - SerdNodeType object_type, + SerdType object_type, const SerdString* object_datatype, const SerdString* object_lang) { @@ -359,11 +359,11 @@ bool serd_writer_write_statement_flat(SerdWriter writer, const SerdString* graph, const SerdString* subject, - SerdNodeType subject_type, + SerdType subject_type, const SerdString* predicate, - SerdNodeType predicate_type, + SerdType predicate_type, const SerdString* object, - SerdNodeType object_type, + SerdType object_type, const SerdString* object_datatype, const SerdString* object_lang) { -- cgit v1.2.1