From 7d763b5778cfbf81ee420558d13e8acbb66d860a Mon Sep 17 00:00:00 2001 From: Jasper Date: Sun, 31 Aug 2025 15:47:31 +0200 Subject: Initial commit --- utils.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 utils.h (limited to 'utils.h') diff --git a/utils.h b/utils.h new file mode 100644 index 0000000..8503c1b --- /dev/null +++ b/utils.h @@ -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 -- cgit v1.2.3