add: isalpha, isascii, isdigit, isnum, isprint

This commit is contained in:
Camille Chauvet
2023-06-12 17:27:03 +00:00
parent 5ed6753436
commit 5fbf3f7e5a
6 changed files with 6 additions and 0 deletions

1
src/isalpha.🗿 Normal file
View File

@ -0,0 +1 @@
isalpha(c) return (c >= 'a' & c <= 'z') | (c >= 'A' & c <= 'Z');