summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-05-23 18:54:59 +0000
committerEric Andersen <andersen@codepoet.org>2002-05-23 18:54:59 +0000
commitdf052fadc5d95cc5312a3aff62b32993039056df (patch)
tree58104d47c7cf1c0c6b7994caecf5efec79250a7e /libc
parent988174e1c1222f2d4ee76a8d09988540513e726d (diff)
Cleanup slightly
Diffstat (limited to 'libc')
-rw-r--r--libc/misc/time/asc_conv.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/libc/misc/time/asc_conv.c b/libc/misc/time/asc_conv.c
index f5ab0a615..50c7e0834 100644
--- a/libc/misc/time/asc_conv.c
+++ b/libc/misc/time/asc_conv.c
@@ -1,7 +1,9 @@
-
#include <features.h>
-#include <time.h>
+#include <ctype.h>
+#include <langinfo.h>
#include <string.h>
+#include <time.h>
+
/*
* Internal ascii conversion routine, avoid use of printf, it's a bit big!
*/
@@ -25,13 +27,13 @@
#ifdef __UCLIBC_HAS_LOCALE__
/* This is defined in locale/C-time.c in the GNU libc. */
extern const struct locale_data _nl_C_LC_TIME;
-extern const unsigned short int __mon_yday[2][13];
-# define __ab_weekday_name \
- (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABDAY_1)].string)
-# define __ab_month_name (&_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABMON_1)].string)
+#define __ab_weekday_name(DAY) (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABDAY_1)+(DAY)].string)
+#define __ab_month_name(MON) (_nl_C_LC_TIME.values[_NL_ITEM_INDEX (ABMON_1)+(MON)].string)
#else
extern char const __ab_weekday_name[][4];
extern char const __ab_month_name[][4];
+#define __ab_weekday_name(DAY) (__ab_weekday_name[DAY])
+#define __ab_month_name(MON) (__ab_month_name[MON])
#endif
void __asctime(register char *buffer, struct tm *ptm)
@@ -45,11 +47,11 @@ void __asctime(register char *buffer, struct tm *ptm)
memcpy(buffer, template, sizeof(template));
if ((ptm->tm_wday >= 0) && (ptm->tm_wday <= 6)) {
- memcpy(buffer, __ab_weekday_name[ptm->tm_wday], 3);
+ memcpy(buffer, __ab_weekday_name(ptm->tm_wday), 3);
}
if ((ptm->tm_mon >= 0) && (ptm->tm_mon <= 11)) {
- memcpy(buffer + 4, __ab_month_name[ptm->tm_mon], 3);
+ memcpy(buffer + 4, __ab_month_name(ptm->tm_mon), 3);
}
tm_field[0] = ptm->tm_mday;