Kernel/VTerm - Added stub support for an escape code vim uses
[tpg/acess2.git] / KernelLand / Kernel / libc.c
index a5f87e4..751497c 100644 (file)
 
 // === PROTOTYPES ===
 #if 0
+unsigned long long     strtoull(const char *str, char **end, int base);
+unsigned long  strtoul(const char *str, char **end, int base);
+signed long long       strtoll(const char *str, char **end, int base);
+signed long    strtol(const char *str, char **end, int base);
  int   atoi(const char *string);
  int   ParseInt(const char *string, int *Val);
 void   itoa(char *buf, Uint64 num, int base, int minLength, char pad);
@@ -485,7 +489,7 @@ int isspace(int c)
 }
 int isupper(int c)
 {
-       return ('a' <= c && c <= 'z');
+       return ('A' <= c && c <= 'Z');
 }
 int isxdigit(int c)
 {

UCC git Repository :: git.ucc.asn.au