#ifndef UTILS_H #define UTILS_H #include #include #include int strlen(char* string); void itoa(int n, char s[]); void reverse(char s[]); #endif