This commit is contained in:
alessandro bason 2025-06-24 17:47:08 +02:00
parent 95d74c2ef4
commit a66e58193f
25 changed files with 2600 additions and 93 deletions

3
str.h
View file

@ -1,8 +1,6 @@
#ifndef COLLA_STR_H
#define COLLA_STR_H
#include <string.h> // strlen
#include "core.h"
#include "darr.h"
@ -165,6 +163,7 @@ bool char_is_space(char c);
bool char_is_alpha(char c);
bool char_is_num(char c);
char char_lower(char c);
char char_upper(char c);
// == INPUT STREAM =================================================