#include <ctype.h>
#include <string.h>
#include <time.h>
#include <stdio.h>
Defines | |
#define | ISSPACE(c) isspace((unsigned char)c) |
#define | SKIPWS(c) while (*(c) && isspace ((unsigned char) *(c))) c++; |
Functions | |
int | check_month (const char *s) |
int | is_from (const char *s, char *path, size_t pathlen) |
Variables | |
const char * | Weekdays [] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" } |
const char * | Months [] |
#define ISSPACE | ( | c | ) | isspace((unsigned char)c) |
#define SKIPWS | ( | c | ) | while (*(c) && isspace ((unsigned char) *(c))) c++; |
int check_month | ( | const char * | s | ) |
int is_from | ( | const char * | s, | |
char * | path, | |||
size_t | pathlen | |||
) |
const char* Months[] |
Initial value:
{ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "ERR" }
const char* Weekdays[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" } |