summaryrefslogtreecommitdiff
path: root/src/utils/utf16.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/utf16.h')
-rw-r--r--src/utils/utf16.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/utils/utf16.h b/src/utils/utf16.h
index 4605e03..2cea38d 100644
--- a/src/utils/utf16.h
+++ b/src/utils/utf16.h
@@ -16,22 +16,22 @@
#include <hubbub/errors.h>
-inline hubbub_error hubbub_utf16_to_ucs4(const uint8_t *s, size_t len,
+hubbub_error hubbub_utf16_to_ucs4(const uint8_t *s, size_t len,
uint32_t *ucs4, size_t *clen);
-inline hubbub_error hubbub_utf16_from_ucs4(uint32_t ucs4, uint8_t *s,
+hubbub_error hubbub_utf16_from_ucs4(uint32_t ucs4, uint8_t *s,
size_t *len);
-inline hubbub_error hubbub_utf16_length(const uint8_t *s, size_t max,
+hubbub_error hubbub_utf16_length(const uint8_t *s, size_t max,
size_t *len);
-inline hubbub_error hubbub_utf16_char_byte_length(const uint8_t *s,
+hubbub_error hubbub_utf16_char_byte_length(const uint8_t *s,
size_t *len);
-inline hubbub_error hubbub_utf16_prev(const uint8_t *s, uint32_t off,
+hubbub_error hubbub_utf16_prev(const uint8_t *s, uint32_t off,
uint32_t *prevoff);
-inline hubbub_error hubbub_utf16_next(const uint8_t *s, uint32_t len,
+hubbub_error hubbub_utf16_next(const uint8_t *s, uint32_t len,
uint32_t off, uint32_t *nextoff);
-inline hubbub_error hubbub_utf16_next_paranoid(const uint8_t *s,
+hubbub_error hubbub_utf16_next_paranoid(const uint8_t *s,
uint32_t len, uint32_t off, uint32_t *nextoff);
#endif