2f04ec53cc
split modules to bring only neccessary functions, eliminate sprintf, make reduced startup_locale version.
24 lines
355 B
C
24 lines
355 B
C
#include <stdio.h>
|
|
#include <rune.h>
|
|
|
|
_BSD_RUNE_T_
|
|
___tolower(c)
|
|
_BSD_RUNE_T_ c;
|
|
{
|
|
int x;
|
|
_RuneRange *rr = &_CurrentRuneLocale->maplower_ext;
|
|
_RuneEntry *re = rr->ranges;
|
|
|
|
if (c == EOF)
|
|
return(EOF);
|
|
for (x = 0; x < rr->nranges; ++x, ++re) {
|
|
if (c < re->min)
|
|
return(c);
|
|
if (c <= re->max)
|
|
return(re->map + c - re->min);
|
|
}
|
|
return(c);
|
|
}
|
|
|
|
|