diff options
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,8 @@ #ifndef UTIL_H #define UTIL_H +#define ABS(x) ((x) >= 0 ? (x) : -(x)) + char *str_delete_at(const char *str, const int pos); size_t str_count_occ(const char *str, const char ch); |