1
0
Fork 0
forked from fun/fun

More examples documentation and just small fixes.

This commit is contained in:
Johannes Findeisen 2025-09-16 07:45:19 +02:00
commit 24f5f7517c
3 changed files with 65 additions and 1 deletions

View file

@ -58,7 +58,6 @@ static int is_blank_line(const char *s) {
return 1;
}
static const char* lstrip(const char *s) {
while (*s == ' ' || *s == '\t') s++;
return s;