libc: ctype

Next up the libc implementation list are the ctype functions. The ctype functions are pretty simple, covering functions like islower and isalpha. These functions also have "wide" equivalents for increased character sizes (like UTF), but I have just ported the standard versions for now. ctype.h I ported the ctype.h header from musl libc. I removed …