Initial Commit

This commit is contained in:
2025-06-19 16:25:25 +02:00
commit d62635c7d9
5 changed files with 123 additions and 0 deletions

12
str_utils.h Normal file
View File

@@ -0,0 +1,12 @@
//
// Created by server on 6/19/25.
//
#ifndef STR_UTILS_H
#define STR_UTILS_H
bool startWith(const char* str, char ch);
bool contains(const char* str, char ch);
bool endsWith(const char* str, char ch);
#endif //STR_UTILS_H