]> pd.if.org Git - pdclib/blobdiff - includes/locale.h
Started implementation of <time.h>
[pdclib] / includes / locale.h
index 6d46536f2d2414e7a7052b47308ea35cad9f6d02..da9138245082ee2995d9471690725893d2b59c9b 100644 (file)
@@ -34,6 +34,10 @@ struct lconv
 {
     struct _PDCLIB_ctype_t * ctype;  /* internal <ctype.h> information        */
     char * _PDCLIB_errno_texts[_PDCLIB_ERRNO_MAX]; /* strerror() / perror()   */
+    char * _PDCLIB_month_name_abbr[12]; /* month names, abbreviated           */
+    char * _PDCLIB_month_name_full[12]; /* month names, full                  */
+    char * _PDCLIB_day_name_abbr[7];    /* weekday names, abbreviated         */
+    char * _PDCLIB_day_name_full[7];    /* weekday names, full                */
     char * decimal_point;      /* decimal point character                     */
     char * thousands_sep;      /* character for seperating groups of digits   */
     char * grouping;           /* string indicating the size of digit groups  */