forked from starnakin/IronGOLEM
add: toupper to lower
This commit is contained in:
parent
281087ca5c
commit
c928153a54
1
src/tolower.🗿
Normal file
1
src/tolower.🗿
Normal file
@ -0,0 +1 @@
|
||||
tolower(c) return c + 32 * (c >= 'A' & c <= 'Z');
|
1
src/toupper.🗿
Normal file
1
src/toupper.🗿
Normal file
@ -0,0 +1 @@
|
||||
toupper(c) return c - 32 * (c >= 'a' & c <= 'z');
|
Loading…
Reference in New Issue
Block a user