]> pd.if.org Git - pdclib/blobdiff - functions/ctype/tolower.c
ctype
[pdclib] / functions / ctype / tolower.c
index 28c435ded8377d125f49ece8b5a8c8b2767007d4..530abf2a9e6bfcf7a94e69b3b3f8f243d53ebe1a 100644 (file)
 
 int tolower( int c )
 {
-    if ( ( c >= 'A' ) && ( c <= 'Z' ) )
-    {
-        c += ( 'a' - 'A' );
-    }
-    return c;
+    return _PDCLIB_locale_info.ctype[c].lower;
 }
 
 #endif