From: John Hodge Date: Fri, 13 Jul 2012 03:10:08 +0000 (+0800) Subject: Kernel - Better documentation of timestamp/format_date X-Git-Tag: rel0.15~611^2~41^2~12 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=528963746741263643d83101831ff3f5252e5399;p=tpg%2Facess2.git Kernel - Better documentation of timestamp/format_date --- diff --git a/KernelLand/Kernel/include/acess.h b/KernelLand/Kernel/include/acess.h index 1415237c..1a982fe5 100644 --- a/KernelLand/Kernel/include/acess.h +++ b/KernelLand/Kernel/include/acess.h @@ -484,10 +484,12 @@ extern int Module_LoadFile(const char *Path, const char *ArgStr); */ /** * \brief Create a timestamp from a time + * \note Days/Months are zero-based (e.g. December is 11, and has a day range of 0-30) */ extern tTime timestamp(int sec, int mins, int hrs, int day, int month, int year); /** * \brief Extract the date/time from a timestamp + * \note Days/Months are zero-based (e.g. December is 11, and has a day range of 0-30) */ extern void format_date(tTime TS, int *year, int *month, int *day, int *hrs, int *mins, int *sec, int *ms); /**