string.h
changeset 5164 54755bc93577
parent 5108 aeaef6fe53b7
child 5317 a41d1389c092
equal deleted inserted replaced
5163:459b243f8413 5164:54755bc93577
    41 	CS_ALPHANUMERAL,      //! Both numeric and alphabetic and spaces and stuff
    41 	CS_ALPHANUMERAL,      //! Both numeric and alphabetic and spaces and stuff
    42 	CS_NUMERAL,           //! Only numeric ones
    42 	CS_NUMERAL,           //! Only numeric ones
    43 	CS_ALPHA,             //! Only alphabetic values
    43 	CS_ALPHA,             //! Only alphabetic values
    44 } CharSetFilter;
    44 } CharSetFilter;
    45 
    45 
    46 /** Convert the given string to lowercase */
    46 /** Convert the given string to lowercase, only works with ASCII! */
    47 void strtolower(char *str);
    47 void strtolower(char *str);
    48 
    48 
    49 typedef uint32 WChar;
    49 typedef uint32 WChar;
    50 
    50 
    51 /**
    51 /**