-/* dtimep.lex exceeds the default table capacities for some old versions
+/* dtimep.l -- parse dates and times.
+ *
+ * This exceeds the default table capacities for some old versions
* of lex (and the minimum defaults as specified by POSIX). The following
* choices meet or exceed the lex defaults for older SunOS4.x, Solaris,
* HPUX, and AIX.
/* Since we're looking at a string at a time, don't worry about
* wrapping to the next buffer.
*/
+#if YY_FLEX_MAJOR_VERSION == 2 && \
+ YY_FLEX_MINOR_VERSION == 6 && \
+ YY_FLEX_SUBMINOR_VERSION == 3
+/* https://github.com/westes/flex/issues/162 */
+#undef yywrap
+#endif
#define yywrap() 1
#define YY_SKIP_YYWRAP
tw.tw_year += 100; \
return(&tw)
-/*
- * Patchable flag that says how to interpret NN/NN/NN dates. When
- * true, we do it European style: DD/MM/YY. When false, we do it
- * American style: MM/DD/YY. Of course, these are all non-RFC822
- * compliant.
- */
-int europeandate = 0;
-
/*
* Table to convert month names to numeric month. We use the
* fact that the low order 5 bits of the sum of the 2nd & 3rd
tw.tw_flags &= ~TW_SDAY; tw.tw_flags |= TW_SEXP; \
SKIPA(); }
#define SETMON() { cp++; \
- tw.tw_mon = month_map[(cp[0] + cp[1]) & 0x1f]; \
+ tw.tw_mon = month_map[(((unsigned char) cp[0]) + ((unsigned char) cp[1])) & 0x1f]; \
SKIPA(); }
#define SETMON_NUM() { tw.tw_mon = atoi(cp)-1; \
SKIPD(); }
#define SETYEAR() { tw.tw_year = atoi(cp); \
SKIPD(); }
#define SETDAY() { tw.tw_mday = atoi(cp); \
- tw.tw_flags |= TW_YES; \
+ tw.tw_flags |= TW_SUCC; \
SKIPD(); }
#define SETTIME() { tw.tw_hour = atoi(cp); \
cp += 2; \
tw.tw_flags |= TW_SZEXP; \
SKIPD(); }
#define SETDST() { tw.tw_flags |= TW_DST; }
-#define SKIPD() { while ( isdigit(*cp++) ) ; \
+#define SKIPD() { while ( isdigit((unsigned char) *cp++) ) ; \
--cp; }
-#define SKIPTOD() { while ( !isdigit(*cp++) ) ; \
+#define SKIPTOD() { while ( !isdigit((unsigned char) *cp++) ) ; \
--cp; }
-#define SKIPA() { while ( isalpha(*cp++) ) ; \
+#define SKIPA() { while ( isalpha((unsigned char) *cp++) ) ; \
--cp; }
-#define SKIPTOA() { while ( !isalpha(*cp++) ) ; \
+#define SKIPTOA() { while ( !isalpha((unsigned char) *cp++) ) ; \
--cp; }
-#define SKIPSP() { while ( isspace(*cp++) ) ; \
+#define SKIPSP() { while ( isspace((unsigned char) *cp++) ) ; \
--cp; }
-#define SKIPTOSP() { while ( !isspace(*cp++) ) ; \
+#define SKIPTOSP() { while ( !isspace((unsigned char) *cp++) ) ; \
--cp; }
#ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST
static void
zonehack (struct tws *tw)
{
- register struct tm *tm;
+ struct tm *tm;
if (dmktime (tw) == (time_t) -1)
return;
YY_BUFFER_STATE lexhandle;
- register unsigned char *cp;
+ char *cp;
static struct tws tw;
memset(&tw,0,sizeof(struct tws));
}
{D}("-"|"/"){D}("-"|"/"){YEAR}{W}{TIME} {
INIT();
- if(europeandate) {
- /* DD/MM/YY */
- SETDAY();
- SKIPTOD();
- SETMON_NUM();
- } else {
- /* MM/DD/YY */
+ /* MM/DD/YY */
SETMON_NUM();
SKIPTOD();
SETDAY();
- }
SKIPTOD();
SETYEAR();
SKIPTOD();
}
{D}("-"|"/"){D}("-"|"/"){YEAR} {
INIT();
- if(europeandate) {
- /* DD/MM/YY */
- SETDAY();
- SKIPTOD();
- SETMON_NUM();
- } else {
- /* MM/DD/YY */
+ /* MM/DD/YY */
SETMON_NUM();
SKIPTOD();
SETDAY();
- }
SKIPTOD();
SETYEAR();
}
{
unput(c);
}
-