9 lines
160 B
C
9 lines
160 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
const char* get_season(int month);
|
|
const char* get_month_name(int month);
|
|
const char* get_weekday_name(int weekday);
|
|
|
|
#endif
|