mud/lib/daemon/include/time.h
2020-09-06 05:43:07 -07:00

15 lines
222 B
C++

#ifndef __TIME_H__
#define __TIME_H__
class timezone {
int Offset;
string Name;
}
static void create();
int GetOffset(string tzone);
string GetName(string tzone);
string *GetTimeZones();
#endif /* __TIME_H__ */