Displaying 1 result from an estimated 1 matches for "local__utf8_to_ucs2".
2007 Aug 24
0
Fixes to make flac build on Solaris
...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_ucs2(const FLAC__byte *utf8,
>> FLAC__uint16 *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;
>>  }...