aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/localtime.h
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-11 14:17:29 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-11 14:17:29 +0000
commit2020d2079737c991a378ee3e486099fee5363337 (patch)
tree6cca3e832b35c1035169d9fea07aa663936c3839 /include/asterisk/localtime.h
parent19b0b540555a50cab713bd16c46a1936c43e9718 (diff)
A lot of doxygen updates
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@92285 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/localtime.h')
-rw-r--r--include/asterisk/localtime.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/asterisk/localtime.h b/include/asterisk/localtime.h
index 4d46198c7..25dd92e34 100644
--- a/include/asterisk/localtime.h
+++ b/include/asterisk/localtime.h
@@ -25,19 +25,19 @@
#define _ASTERISK_LOCALTIME_H
struct ast_tm {
- int tm_sec; /* Seconds. [0-60] (1 leap second) */
- int tm_min; /* Minutes. [0-59] */
- int tm_hour; /* Hours. [0-23] */
- int tm_mday; /* Day. [1-31] */
- int tm_mon; /* Month. [0-11] */
- int tm_year; /* Year - 1900. */
- int tm_wday; /* Day of week. [0-6] */
- int tm_yday; /* Days in year.[0-365] */
- int tm_isdst; /* DST. [-1/0/1]*/
- long int tm_gmtoff; /* Seconds east of UTC. */
- char *tm_zone; /* Timezone abbreviation. */
+ int tm_sec; /*!< Seconds. [0-60] (1 leap second) */
+ int tm_min; /*!< Minutes. [0-59] */
+ int tm_hour; /*!< Hours. [0-23] */
+ int tm_mday; /*!< Day. [1-31] */
+ int tm_mon; /*!< Month. [0-11] */
+ int tm_year; /*!< Year - 1900. */
+ int tm_wday; /*!< Day of week. [0-6] */
+ int tm_yday; /*!< Days in year.[0-365] */
+ int tm_isdst; /*!< DST. [-1/0/1]*/
+ long int tm_gmtoff; /*!< Seconds east of UTC. */
+ char *tm_zone; /*!< Timezone abbreviation. */
/* NOTE: do NOT reorder this final item. The order needs to remain compatible with struct tm */
- int tm_usec; /* microseconds */
+ int tm_usec; /*!< microseconds */
};
struct ast_tm *ast_localtime(const struct timeval *timep, struct ast_tm *p_tm, const char *zone);