2 Copyright © 2012, The AROS Development Team. All rights reserved.
7 #include <aros/symbolsets.h>
9 const unsigned short int *__ctype_b
;
10 const int *__ctype_toupper
;
11 const int *__ctype_tolower
;
13 static int __ctype_init(void)
15 const struct arosc_ctype
*ctype
= __get_arosc_ctype();
18 __ctype_toupper
= ctype
->toupper
;
19 __ctype_tolower
= ctype
->tolower
;
24 ADD2INIT(__ctype_init
, 20);