diff options
author | David Robillard <d@drobilla.net> | 2018-05-11 11:14:32 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-05-27 18:23:15 +0200 |
commit | ca7747e16dbcf7395d73f5292394cf37a4748604 (patch) | |
tree | c749739e6d7850d2090607a036b1dfa44c53fc3f /src/string_utils.h | |
parent | 227834eebd2aad13b25bddae3e65cf51877333ee (diff) | |
download | serd-ca7747e16dbcf7395d73f5292394cf37a4748604.tar.gz serd-ca7747e16dbcf7395d73f5292394cf37a4748604.tar.bz2 serd-ca7747e16dbcf7395d73f5292394cf37a4748604.zip |
Clean up includes and improve source file separation
Diffstat (limited to 'src/string_utils.h')
-rw-r--r-- | src/string_utils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/string_utils.h b/src/string_utils.h index 939ddde0..ab6ece0e 100644 --- a/src/string_utils.h +++ b/src/string_utils.h @@ -17,7 +17,13 @@ #ifndef SERD_STRING_UTILS_H #define SERD_STRING_UTILS_H +#include "serd/serd.h" + #include <ctype.h> +#include <stdbool.h> +#include <stddef.h> +#include <stdint.h> +#include <string.h> /** Unicode replacement character in UTF-8 */ static const uint8_t replacement_char[] = { 0xEF, 0xBF, 0xBD }; |