X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Flocale.h;h=da9138245082ee2995d9471690725893d2b59c9b;hp=6d46536f2d2414e7a7052b47308ea35cad9f6d02;hb=761281caf431d264d568aec797095ef2c28f3910;hpb=18dee35aba1ae0fcdecb0cd11d4f3c1a0d94b51e diff --git a/includes/locale.h b/includes/locale.h index 6d46536..da91382 100644 --- a/includes/locale.h +++ b/includes/locale.h @@ -34,6 +34,10 @@ struct lconv { struct _PDCLIB_ctype_t * ctype; /* internal 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 */