blob: 8503c1b11f6ab82276e1dd30edd94cc133c602eb (
plain)
1
2
3
4
5
6
7
8
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
|