From e875c97c75e5949af05eb2b919936afb468d7063 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 23 Mar 2008 19:56:38 +0000 Subject: Drop usage of inline as it's invalid svn path=/trunk/hubbub/; revision=4044 --- src/utils/utf8.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/utils/utf8.h') diff --git a/src/utils/utf8.h b/src/utils/utf8.h index 5b865c1..f2eedcb 100644 --- a/src/utils/utf8.h +++ b/src/utils/utf8.h @@ -16,22 +16,22 @@ #include -inline hubbub_error hubbub_utf8_to_ucs4(const uint8_t *s, size_t len, +hubbub_error hubbub_utf8_to_ucs4(const uint8_t *s, size_t len, uint32_t *ucs4, size_t *clen); -inline hubbub_error hubbub_utf8_from_ucs4(uint32_t ucs4, uint8_t *s, +hubbub_error hubbub_utf8_from_ucs4(uint32_t ucs4, uint8_t *s, size_t *len); -inline hubbub_error hubbub_utf8_length(const uint8_t *s, size_t max, +hubbub_error hubbub_utf8_length(const uint8_t *s, size_t max, size_t *len); -inline hubbub_error hubbub_utf8_char_byte_length(const uint8_t *s, +hubbub_error hubbub_utf8_char_byte_length(const uint8_t *s, size_t *len); -inline hubbub_error hubbub_utf8_prev(const uint8_t *s, uint32_t off, +hubbub_error hubbub_utf8_prev(const uint8_t *s, uint32_t off, uint32_t *prevoff); -inline hubbub_error hubbub_utf8_next(const uint8_t *s, uint32_t len, +hubbub_error hubbub_utf8_next(const uint8_t *s, uint32_t len, uint32_t off, uint32_t *nextoff); -inline hubbub_error hubbub_utf8_next_paranoid(const uint8_t *s, uint32_t len, +hubbub_error hubbub_utf8_next_paranoid(const uint8_t *s, uint32_t len, uint32_t off, uint32_t *nextoff); #endif -- cgit v1.2.3