feat: working include directive

This commit is contained in:
2025-11-08 18:24:52 +01:00
parent de5fc8c641
commit 9c60d5dc4f
25 changed files with 248 additions and 154 deletions
+3 -2
View File
@@ -3,10 +3,11 @@
#ifndef STRINGS_H
#define STRINGS_H
char *string_concat(const char *s1, const char *s2);
unsigned int string_trim(char *str);
bool string_is_number(char *value);
char *string_replace_at(char *src, unsigned int from, unsigned int to,
char *rpl);
#endif /* STRINGS_H */