aboutsummaryrefslogtreecommitdiffstats
path: root/utils.h
blob: 73703bc5433060192ea333a31595bf7b3ac1ea8b (plain)
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