Explorar o código

LibC: Use __inline_isascii() in isascii()

Gunnar Beutner %!s(int64=4) %!d(string=hai) anos
pai
achega
1e1de4a542
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Userland/Libraries/LibC/ctype.cpp

+ 1 - 1
Userland/Libraries/LibC/ctype.cpp

@@ -116,7 +116,7 @@ int islower(int c)
 #undef isascii
 int isascii(int c)
 {
-    return ((unsigned)c <= 127);
+    return __inline_isascii(c);
 }
 
 #undef isblank