update for HEAD-2003091401
[reactos.git] / lib / msvcrt / time / ctime.c
index 0f27e8e..7c71183 100644 (file)
@@ -902,6 +902,9 @@ gmtload(struct state * CPP_CONST sp)
     (void) tzparse(GMT, sp, TRUE);
 }
 
+/*
+ * @implemented
+ */
 void
 _tzset(void)
 {
@@ -1020,6 +1023,9 @@ localsub(const time_t * CPP_CONST timep, const long offset, struct tm * CPP_CONS
   tmp->tm_zone = (char *)&sp->chars[ttisp->tt_abbrind];
 }
 
+/*
+ * @implemented
+ */
 struct tm *
 localtime(const time_t * CPP_CONST timep)
 {
@@ -1067,6 +1073,9 @@ gmtsub(const time_t * CPP_CONST timep, const long offset, struct tm * CPP_CONST
   }
 }
 
+/*
+ * @implemented
+ */
 struct tm *
 gmtime(const time_t * CPP_CONST timep)
 {
@@ -1175,6 +1184,9 @@ timesub(const time_t * CPP_CONST timep, const long offset, const struct state *
 ** A la X3J11
 */
 
+/*
+ * @implemented
+ */
 char *
 asctime(const struct tm *timeptr)
 {
@@ -1196,6 +1208,9 @@ asctime(const struct tm *timeptr)
   return result;
 }
 
+/*
+ * @implemented
+ */
 char *
 ctime(const time_t * CPP_CONST timep)
 {
@@ -1412,6 +1427,9 @@ time1(struct tm * CPP_CONST tmp, void (*const funcp)(const time_t * CPP_CONST, c
   return WRONG;
 }
 
+/*
+ * @implemented
+ */
 time_t
 mktime(struct tm * tmp)
 {