Turn utf8_walkbyte into static INLINE

This commit is contained in:
twinaphex 2016-08-27 02:24:32 +02:00
parent efc245b85a
commit 9629bd126e
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ size_t utf8len(const char *string)
return ret;
}
inline uint8_t utf8_walkbyte(const char **string)
static INLINE uint8_t utf8_walkbyte(const char **string)
{
return *((*string)++);
}