From 2eec748dbf865725d414dbbd57454e1cd6db87e7 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 4 Nov 2011 14:52:18 +0000 Subject: Move serd_strlen and serd_strerror to string.c and document both in "String Utilities" section. git-svn-id: http://svn.drobilla.net/serd/trunk@229 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- serd/serd.h | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'serd') diff --git a/serd/serd.h b/serd/serd.h index 005f2a73..79f164ea 100644 --- a/serd/serd.h +++ b/serd/serd.h @@ -91,10 +91,6 @@ typedef enum { SERD_ERR_NOT_FOUND /**< Not found */ } SerdStatus; -SERD_API -const uint8_t* -serd_strerror(SerdStatus status); - /** RDF syntax type. */ @@ -247,7 +243,19 @@ typedef enum { } SerdStyle; /** - UTF-8 strlen. + @name String Utilities + @{ +*/ + +/** + Return a string describing a status code. +*/ +SERD_API +const uint8_t* +serd_strerror(SerdStatus status); + +/** + Measure a UTF-8 string. @return Length of @c str in characters (except NULL). @param str A null-terminated UTF-8 string. @param n_bytes (Output) Set to the size of @c str in bytes (except NULL). @@ -258,6 +266,7 @@ size_t serd_strlen(const uint8_t* str, size_t* n_bytes, SerdNodeFlags* flags); /** + @} @name URI @{ */ -- cgit v1.2.1