avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2312] Wire <time.h> into the documentation build.


From: Joerg Wunsch
Subject: [avr-libc-commit] [2312] Wire <time.h> into the documentation build.
Date: Fri, 29 Mar 2013 13:28:17 +0000

Revision: 2312
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2312
Author:   joerg_wunsch
Date:     2013-03-29 13:28:16 +0000 (Fri, 29 Mar 2013)
Log Message:
-----------
Wire <time.h> into the documentation build.

Alas, LaTeX didn't like the existing UTF-8 emdash characters in time.h,
so I replaced them by normal ASCII dashes.

Modified Paths:
--------------
    trunk/avr-libc/doc/api/doxygen.config.in
    trunk/avr-libc/include/time.h

Modified: trunk/avr-libc/doc/api/doxygen.config.in
===================================================================
--- trunk/avr-libc/doc/api/doxygen.config.in    2013-03-29 10:05:13 UTC (rev 
2311)
+++ trunk/avr-libc/doc/api/doxygen.config.in    2013-03-29 13:28:16 UTC (rev 
2312)
@@ -560,6 +560,7 @@
                          @top_srcdir@/include/stdio.h \
                          @top_srcdir@/include/stdlib.h \
                          @top_srcdir@/include/string.h \
+                         @top_srcdir@/include/time.h \
                          @top_srcdir@/libc \
                          @top_srcdir@/include/avr/boot.h \
                          @top_srcdir@/include/avr/cpufunc.h \

Modified: trunk/avr-libc/include/time.h
===================================================================
--- trunk/avr-libc/include/time.h       2013-03-29 10:05:13 UTC (rev 2311)
+++ trunk/avr-libc/include/time.h       2013-03-29 13:28:16 UTC (rev 2312)
@@ -81,14 +81,14 @@
        The normal ranges of the elements are..
        
 \code
-       tm_sec          seconds after the minute — [0, 60]
-       tm_min          minutes after the hour — [0, 59]
-       tm_hour         hours since midnight — [0, 23]
-       tm_mday         day of the month — [1, 31]
-       tm_wday         days since Sunday — [0, 6]
-       tm_mon          months since January — [0, 11]  
+       tm_sec          seconds after the minute - [0, 60]
+       tm_min          minutes after the hour - [0, 59]
+       tm_hour         hours since midnight - [0, 23]
+       tm_mday         day of the month - [1, 31]
+       tm_wday         days since Sunday - [0, 6]
+       tm_mon          months since January - [0, 11]  
        tm_year         years since 1900
-       tm_yday         days since January 1 — [0, 365] 
+       tm_yday         days since January 1 - [0, 365] 
        tm_isdst        Daylight Saving Time flag
 
 \endcode
@@ -100,14 +100,14 @@
 
 */
 struct tm{
-       int8_t tm_sec;          /*      seconds after the minute — [0, 60]      
        */
-       int8_t tm_min;          /*      minutes after the hour — [0, 59]        
        */
-       int8_t tm_hour;         /*      hours since midnight — [0, 23]          
        */
-       int8_t tm_mday;         /*      day of the month — [1, 31]              
                */
-       int8_t tm_wday;         /*      days since Sunday — [0, 6]              
                */
-       int8_t tm_mon;          /*      months since January — [0, 11]          
        */
+       int8_t tm_sec;          /*      seconds after the minute - [0, 60]      
        */
+       int8_t tm_min;          /*      minutes after the hour - [0, 59]        
        */
+       int8_t tm_hour;         /*      hours since midnight - [0, 23]          
        */
+       int8_t tm_mday;         /*      day of the month - [1, 31]              
                */
+       int8_t tm_wday;         /*      days since Sunday - [0, 6]              
                */
+       int8_t tm_mon;          /*      months since January - [0, 11]          
        */
        int16_t tm_year;        /*      years since 1900                        
                        */
-       int16_t tm_yday;        /*      days since January 1 — [0, 365]         
        */
+       int16_t tm_yday;        /*      days since January 1 - [0, 365]         
        */
        int16_t tm_isdst;       /*      Daylight Saving Time flag               
                */
 };
 
@@ -388,4 +388,4 @@
 }
 #endif
 
-#endif /*      TIME_H  */
\ No newline at end of file
+#endif /*      TIME_H  */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]