working config file

This commit is contained in:
2025-09-18 19:32:19 +02:00
parent 7b42d1c90a
commit e811d404a1
9 changed files with 145 additions and 54 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <stdbool.h>
#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);
#endif /* STRINGS_H */