Displaying 1 result from an estimated 1 matches for "local__ucs2len".
2007 Aug 24
0
Fixes to make flac build on Solaris
...*ucs2)
>> +static inline unsigned local__utf8_to_ucs2(const FLAC__byte *utf8,
>> FLAC__uint16 *ucs2)
>> {
>> const unsigned len = local__utf8len(utf8);
>>
>> @@ -140,7 +140,7 @@
>> return out;
>> }
>>
>> -static __inline unsigned local__ucs2len(FLAC__uint16 ucs2)
>> +static inline unsigned local__ucs2len(FLAC__uint16 ucs2)
>> {
>> if (ucs2 < 0x0080)
>> return 1;
>> @@ -150,7 +150,7 @@
>> return 3;
>> }
>>
>> -static __inline unsigned local__ucs2_to_utf8(FLAC__uint16 ucs2...