diff options
Diffstat (limited to 'sqmail-4.3.07/src/include/datetime.h')
-rw-r--r-- | sqmail-4.3.07/src/include/datetime.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sqmail-4.3.07/src/include/datetime.h b/sqmail-4.3.07/src/include/datetime.h new file mode 100644 index 0000000..68d1618 --- /dev/null +++ b/sqmail-4.3.07/src/include/datetime.h @@ -0,0 +1,20 @@ +#ifndef DATETIME_H +#define DATETIME_H + +struct datetime { + int hour; + int min; + int sec; + int wday; + int mday; + int yday; + int mon; + int year; +} ; + +typedef long datetime_sec; + +void datetime_tai(); +datetime_sec datetime_untai(); + +#endif |