Files
home-lab_watchdog_keepalive/str_utils.h
2025-06-19 16:25:25 +02:00

13 lines
227 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);
#endif //STR_UTILS_H