1 2 3 4 5 6 7 8 9 10 11
#ifndef UTILS_H #define UTILS_H namespace Utils { char getch(); void clear_screen(); int window_height(); int count_digits(int num); } #endif