Files

14 lines
277 B
C

//
// 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);
bool startsWith(const char* str, const char* ch);
#endif //STR_UTILS_H