Compat work towards porting vim.

This commit is contained in:
Andreas Kling 2019-02-26 15:57:59 +01:00
commit a356746d04
Notes: sideshowbarker 2024-07-19 15:37:10 +09:00
17 changed files with 200 additions and 77 deletions

View file

@ -1,3 +1,16 @@
#include <ctype.h>
#include <string.h>
int __tolower(int c)
{
if (c >= 'A' && c <= 'Z')
return c | 0x20;
return c;
}
int __toupper(int c)
{
if (c >= 'a' && c <= 'z')
return c & ~0x20;
return c;
}