diff options
Diffstat (limited to 'src/string.c')
-rw-r--r-- | src/string.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/string.c b/src/string.c index 7b8fc662..783d2b3f 100644 --- a/src/string.c +++ b/src/string.c @@ -20,7 +20,6 @@ #include "string_utils.h" -SERD_API const char* serd_strerror(SerdStatus status) { @@ -38,7 +37,6 @@ serd_strerror(SerdStatus status) return "Unknown error"; // never reached } -SERD_API size_t serd_strlen(const char* str, SerdNodeFlags* flags) { @@ -64,7 +62,6 @@ read_sign(const char** sptr) } } -SERD_API double serd_strtod(const char* str, size_t* end) { @@ -135,7 +132,6 @@ decode_chunk(const uint8_t in[4], uint8_t out[3]) return 1 + (in[2] != '=') + ((in[2] != '=') && (in[3] != '=')); } -SERD_API void* serd_base64_decode(const char* str, size_t len, size_t* size) { |