diff options
author | David Robillard <d@drobilla.net> | 2016-03-15 23:37:09 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-01-13 15:33:54 -0500 |
commit | 3bf99421c04fdcc789745b7c59fc9bee8edce06b (patch) | |
tree | bdd67c76a8a00e48f89b82088cc8a8ce1329a54d /include | |
parent | 16e8c50a29d8a932fa84a74d0b2a732994116db0 (diff) | |
download | serd-3bf99421c04fdcc789745b7c59fc9bee8edce06b.tar.gz serd-3bf99421c04fdcc789745b7c59fc9bee8edce06b.tar.bz2 serd-3bf99421c04fdcc789745b7c59fc9bee8edce06b.zip |
Remove useless character counting
Diffstat (limited to 'include')
-rw-r--r-- | include/serd/serd.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/serd/serd.h b/include/serd/serd.h index 189592de..773574f0 100644 --- a/include/serd/serd.h +++ b/include/serd/serd.h @@ -140,15 +140,13 @@ serd_strerror(SerdStatus status); /** Measure a UTF-8 string. - @return Length of `str` in characters (except NULL). + @return Length of `str` in bytes. @param str A null-terminated UTF-8 string. - @param n_bytes (Output) Set to the size of `str` in bytes (except NULL). @param flags (Output) Set to the applicable flags. */ SERD_API size_t serd_strlen(const uint8_t* SERD_NONNULL str, - size_t* SERD_NULLABLE n_bytes, SerdNodeFlags* SERD_NULLABLE flags); /** @@ -363,12 +361,11 @@ typedef enum { typedef struct { const uint8_t* SERD_NULLABLE buf; ///< Value string size_t n_bytes; ///< Size in bytes (excluding null) - size_t n_chars; ///< String length (excluding null) SerdNodeFlags flags; ///< Node flags (string properties) SerdType type; ///< Node type } SerdNode; -static const SerdNode SERD_NODE_NULL = {NULL, 0, 0, 0, SERD_NOTHING}; +static const SerdNode SERD_NODE_NULL = {NULL, 0, 0, SERD_NOTHING}; /** Make a (shallow) node from `str`. |