diff options
author | Jasper | 2025-08-31 15:47:31 +0200 |
---|---|---|
committer | Jasper | 2025-08-31 15:47:31 +0200 |
commit | 7d763b5778cfbf81ee420558d13e8acbb66d860a (patch) | |
tree | e67fa668944e79526cbdf7b6e8eed6e8d81ebdb6 /utils.h |
Initial commit
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 |