diff options
author | David Robillard <d@drobilla.net> | 2021-07-22 15:26:22 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:08 -0500 |
commit | 5e4538756d601e6a941c5290777af95ea8848e1a (patch) | |
tree | 9868e188a48a528e9908fcf695147f75790c3a56 /src/string_utils.h | |
parent | 64024d0fa6a6dc048b2b846738846da597025f56 (diff) | |
download | serd-5e4538756d601e6a941c5290777af95ea8848e1a.tar.gz serd-5e4538756d601e6a941c5290777af95ea8848e1a.tar.bz2 serd-5e4538756d601e6a941c5290777af95ea8848e1a.zip |
[WIP] Preserve long or short quoting from input documents
Diffstat (limited to 'src/string_utils.h')
-rw-r--r-- | src/string_utils.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/string_utils.h b/src/string_utils.h index 9de03fa0..2517b270 100644 --- a/src/string_utils.h +++ b/src/string_utils.h @@ -4,8 +4,6 @@ #ifndef SERD_SRC_STRING_UTILS_H #define SERD_SRC_STRING_UTILS_H -#include "serd/node.h" - #include <stdbool.h> #include <stddef.h> #include <stdint.h> @@ -97,9 +95,6 @@ is_windows_path(const char* path) (path[2] == '/' || path[2] == '\\'); } -size_t -serd_substrlen(const char* str, size_t len, SerdNodeFlags* flags); - static inline uint8_t hex_digit_value(const uint8_t c) { |