mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 03:28:19 +00:00
23 lines
493 B
C
23 lines
493 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
#include "tolower_data.h"
|
||
|
|
||
|
static int compul(const void *a, const void *b)
|
||
|
{
|
||
|
struct UPPER_LOWER *ul_a = (struct UPPER_LOWER *) a;
|
||
|
struct UPPER_LOWER *ul_b = (struct UPPER_LOWER *) b;
|
||
|
return ul_a->upper - ul_b->upper;
|
||
|
}
|
||
|
|
||
|
int str_utf8_tolower(int code)
|
||
|
{
|
||
|
struct UPPER_LOWER key;
|
||
|
struct UPPER_LOWER *res;
|
||
|
key.upper = code;
|
||
|
res = bsearch(&key, tolower, NUM_TOLOWER, sizeof(struct UPPER_LOWER), compul);
|
||
|
|
||
|
if(res == NULL)
|
||
|
return code;
|
||
|
return res->lower;
|
||
|
}
|