#ifndef UTIL_H #define UTIL_H #include #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); int int_rand(const int bound_l, const int bound_u); #endif