diff options
author | David Robillard <d@drobilla.net> | 2020-06-21 17:38:08 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-06-21 18:06:22 +0200 |
commit | 8353731836d8a79265d93792d29b8b4550a8c09e (patch) | |
tree | 18d1d623fdf1dda57deb90d62a44414ca6772959 /src | |
parent | 16573e710c9481ede8b12f5c00127f8e8a975d02 (diff) | |
download | serd-8353731836d8a79265d93792d29b8b4550a8c09e.tar.gz serd-8353731836d8a79265d93792d29b8b4550a8c09e.tar.bz2 serd-8353731836d8a79265d93792d29b8b4550a8c09e.zip |
Clean up includes
Diffstat (limited to 'src')
-rw-r--r-- | src/byte_source.c | 9 | ||||
-rw-r--r-- | src/env.c | 7 | ||||
-rw-r--r-- | src/n3.c | 9 | ||||
-rw-r--r-- | src/node.c | 8 | ||||
-rw-r--r-- | src/reader.c | 3 | ||||
-rw-r--r-- | src/reader.h | 6 | ||||
-rw-r--r-- | src/serd_internal.h | 15 | ||||
-rw-r--r-- | src/serdi.c | 11 | ||||
-rw-r--r-- | src/string.c | 6 | ||||
-rw-r--r-- | src/uri.c | 7 | ||||
-rw-r--r-- | src/writer.c | 7 |
11 files changed, 63 insertions, 25 deletions
diff --git a/src/byte_source.c b/src/byte_source.c index 210e638e..329c89a3 100644 --- a/src/byte_source.c +++ b/src/byte_source.c @@ -1,5 +1,5 @@ /* - Copyright 2011-2017 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -16,6 +16,13 @@ #include "serd_internal.h" +#include "serd/serd.h" + +#include <stdbool.h> +#include <stdint.h> +#include <stdlib.h> +#include <string.h> + SerdStatus serd_byte_source_page(SerdByteSource* source) { @@ -1,5 +1,5 @@ /* - Copyright 2011-2016 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -14,8 +14,11 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "serd_internal.h" +#include "serd/serd.h" +#include <stdbool.h> +#include <stdint.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> @@ -1,5 +1,5 @@ /* - Copyright 2011-2017 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -14,18 +14,19 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "reader.h" #include "serd_internal.h" +#include "serd/serd.h" + #include <assert.h> #include <ctype.h> -#include <errno.h> +#include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "reader.h" - #define TRY_THROW(exp) if (!(exp)) goto except; #define TRY_RET(exp) if (!(exp)) return 0; @@ -1,5 +1,5 @@ /* - Copyright 2011-2016 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -16,8 +16,14 @@ #include "serd_internal.h" +#include "serd/serd.h" + +#include <assert.h> #include <float.h> #include <math.h> +#include <stdbool.h> +#include <stdint.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/src/reader.c b/src/reader.c index ef393ec7..aec37bea 100644 --- a/src/reader.c +++ b/src/reader.c @@ -1,5 +1,5 @@ /* - Copyright 2011-2017 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -17,7 +17,6 @@ #include "reader.h" #include "serd_internal.h" -#include <ctype.h> #include <errno.h> #include <stdarg.h> #include <stdint.h> diff --git a/src/reader.h b/src/reader.h index f7cdba02..adea6651 100644 --- a/src/reader.h +++ b/src/reader.h @@ -1,5 +1,5 @@ /* - Copyright 2011-2017 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -16,7 +16,11 @@ #include "serd_internal.h" +#include "serd/serd.h" + #include <assert.h> +#include <stdbool.h> +#include <stdint.h> #include <stdio.h> static inline int diff --git a/src/serd_internal.h b/src/serd_internal.h index 9c58c151..dea98000 100644 --- a/src/serd_internal.h +++ b/src/serd_internal.h @@ -19,20 +19,21 @@ #define _POSIX_C_SOURCE 200809L /* for posix_memalign and posix_fadvise */ -#include <assert.h> -#include <ctype.h> -#include <errno.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> +#include "serd_config.h" #include "serd/serd.h" -#include "serd_config.h" #if defined(HAVE_POSIX_FADVISE) && defined(HAVE_FILENO) # include <fcntl.h> #endif +#include <assert.h> +#include <ctype.h> +#include <errno.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + #define NS_XSD "http://www.w3.org/2001/XMLSchema#" #define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#" diff --git a/src/serdi.c b/src/serdi.c index 03de46fd..802a6ff5 100644 --- a/src/serdi.c +++ b/src/serdi.c @@ -1,5 +1,5 @@ /* - Copyright 2011-2017 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -14,16 +14,19 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "serd_config.h" #include "serd_internal.h" +#include "serd/serd.h" + #ifdef _WIN32 #include <fcntl.h> #include <io.h> #endif -#include <assert.h> -#include <errno.h> -#include <stdlib.h> +#include <stdbool.h> +#include <stdint.h> +#include <stdio.h> #include <string.h> #define SERDI_ERROR(msg) fprintf(stderr, "serdi: " msg); diff --git a/src/string.c b/src/string.c index 0869bc23..b73cea03 100644 --- a/src/string.c +++ b/src/string.c @@ -1,5 +1,5 @@ /* - Copyright 2011-2016 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -16,7 +16,11 @@ #include "serd_internal.h" +#include "serd/serd.h" + #include <math.h> +#include <stdint.h> +#include <stdlib.h> void serd_free(void* ptr) @@ -1,5 +1,5 @@ /* - Copyright 2011-2014 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -16,6 +16,11 @@ #include "serd_internal.h" +#include "serd/serd.h" + +#include <stdbool.h> +#include <stdint.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/src/writer.c b/src/writer.c index 33619d34..61b6b825 100644 --- a/src/writer.c +++ b/src/writer.c @@ -1,5 +1,5 @@ /* - Copyright 2011-2017 David Robillard <http://drobilla.net> + Copyright 2011-2020 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -16,7 +16,12 @@ #include "serd_internal.h" +#include "serd/serd.h" + #include <assert.h> +#include <stdarg.h> +#include <stdbool.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |