did some cleaning of unused stuff and added docs

This commit is contained in:
cozis
2022-01-22 03:18:34 +01:00
parent 4dfc213c71
commit e6e3efe0e2
6 changed files with 84 additions and 229 deletions
+12
View File
@@ -0,0 +1,12 @@
fun isalpha(c)
return c <
fun parse(req)
{
i = 0;
while i < count(req) && isalpha(req[i]):
i = i + 1;
}