// // 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