diff options
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#ifndef UTIL_H +#define UTIL_H + +char *str_delete_at(const char *str, const int pos); +size_t str_count_occ(const char *str, const char ch); + +int int_rand(const int bound_l, const int bound_u); + +#endif |