Parent Directory
|
Revision Log
chore: add trunk
1 | #ifndef SUDOBOT_UTILS_STRING_H |
2 | #define SUDOBOT_UTILS_STRING_H |
3 | |
4 | #include <stdlib.h> |
5 | |
6 | #define str_concat(...) str_concat_varg(__VA_ARGS__, NULL) |
7 | |
8 | char *str_ltrim(const char *restrict str); |
9 | char *str_rtrim(const char *restrict str); |
10 | char *str_trim(const char *restrict str); |
11 | bool str_starts_with(const char *restrict haystack, const char *restrict needle); |
12 | char *str_concat_varg(const char *, ...); |
13 | |
14 | #endif /* SUDOBOT_UTILS_STRING_H */ |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |