summaryrefslogtreecommitdiff
path: root/src/raptor.h
diff options
context:
space:
mode:
authorDave Beckett <dave@dajobe.org>2004-12-02 19:24:13 +0000
committerDave Beckett <dave@dajobe.org>2004-12-02 19:24:13 +0000
commitc4ef3595069a58f90517dbf0236425ac79e768f2 (patch)
treec399b3235b57c8a7caad6d1d5081b13fa152575f /src/raptor.h
parent78b2a5591b45046c2019bb13cbfb6e5d4c841671 (diff)
downloadraptor-c4ef3595069a58f90517dbf0236425ac79e768f2.tar.gz
Added prototype for raptor_new_namespace_parts_from_string.
raptor_sequence_free_handler prototype changed to return void
Diffstat (limited to 'src/raptor.h')
-rw-r--r--src/raptor.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/raptor.h b/src/raptor.h
index c9b89a18..e4da51b1 100644
--- a/src/raptor.h
+++ b/src/raptor.h
@@ -417,12 +417,13 @@ RAPTOR_API raptor_uri* raptor_namespace_get_uri(const raptor_namespace *ns);
RAPTOR_API const unsigned char* raptor_namespace_get_prefix(const raptor_namespace *ns);
RAPTOR_API unsigned char *raptor_namespaces_format(const raptor_namespace *ns, size_t *length_p);
RAPTOR_API int raptor_iostream_write_namespace(raptor_iostream* iostr, raptor_namespace *ns);
+RAPTOR_API int raptor_new_namespace_parts_from_string(unsigned char *string, unsigned char **prefix, unsigned char **uri_string);
typedef struct raptor_stringbuffer_s raptor_stringbuffer;
/* Sequence class */
typedef struct raptor_sequence_s raptor_sequence;
-typedef void* (raptor_sequence_free_handler(void*));
+typedef void (raptor_sequence_free_handler(void*));
typedef void (raptor_sequence_print_handler(void *object, FILE *fh));
/* Create */