search for: local__utf8len

Displaying 1 result from an estimated 1 matches for "local__utf8len".

2007 Aug 24
0
Fixes to make flac build on Solaris
...len(const FLAC__uint16 *s) >> { >> unsigned n = 0; >> while(*s++) >> @@ -43,7 +43,7 @@ >> * and a more clear explanation at the end of this section: >> * http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 >> */ >> -static __inline unsigned local__utf8len(const FLAC__byte *utf8) >> +static inline unsigned local__utf8len(const FLAC__byte *utf8) >> { >> FLAC__ASSERT(0 != utf8); >> if ((utf8[0] & 0x80) == 0) { >> @@ -85,7 +85,7 @@ >> } >> >> >> -static __inline unsigned local__utf8_to_...