Commit fc347787 authored by Nikias Bassen's avatar Nikias Bassen

bplist: make plist_utf8_to_utf16 static since it is only used internally

parent fc3bc57f
......@@ -1009,7 +1009,7 @@ static int is_ascii_string(char* s, int len)
return ret;
}
uint16_t *plist_utf8_to_utf16(char *unistr, long size, long *items_read, long *items_written)
static uint16_t *plist_utf8_to_utf16(char *unistr, long size, long *items_read, long *items_written)
{
uint16_t *outbuf = (uint16_t*)malloc(((size*2)+1)*sizeof(uint16_t));
int p = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment