Go to the source code of this file.
static bool is_spacing |
( |
char |
c | ) |
|
|
static |
Definition at line 8 of file filetimetools.cpp.
8 {
return c ==
' ' || c==10 || c==13 || c ==
'\t';}
static bool is_spacing |
( |
const char * |
str, |
|
|
t_size |
len |
|
) |
| |
|
static |
static unsigned ParseDateElem |
( |
const char * |
ptr, |
|
|
t_size |
len |
|
) |
| |
|
static |
Definition at line 17 of file filetimetools.cpp.
19 for(
t_size walk = 0; walk < len; ++walk) {
20 const char c = ptr[walk];
22 ret = ret * 10 + (unsigned)(c -
'0');
const char g_invalidMsg[] = "<invalid timestamp>" |
|
static |