264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
|
memset(info, 0, sizeof(DateInfo));
}
/*
* Structure containing the command arguments supplied to [clock format] and [clock scan]
*/
#define CLF_VALIDATE (1 << 2)
#define CLF_EXTENDED (1 << 4)
#define CLF_STRICT (1 << 8)
#define CLF_LOCALE_USED (1 << 15)
typedef struct ClockFmtScnCmdArgs {
void *clientData; /* Opaque pointer to literal pool, etc. */
Tcl_Interp *interp; /* Tcl interpreter */
|
|
>
>
|
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
|
memset(info, 0, sizeof(DateInfo));
}
/*
* Structure containing the command arguments supplied to [clock format] and [clock scan]
*/
#define CLF_VALIDATE_S1 (1 << 0)
#define CLF_VALIDATE_S2 (1 << 1)
#define CLF_VALIDATE (CLF_VALIDATE_S1|CLF_VALIDATE_S2)
#define CLF_EXTENDED (1 << 4)
#define CLF_STRICT (1 << 8)
#define CLF_LOCALE_USED (1 << 15)
typedef struct ClockFmtScnCmdArgs {
void *clientData; /* Opaque pointer to literal pool, etc. */
Tcl_Interp *interp; /* Tcl interpreter */
|