annotate src/timeconv.h @ 100:1e4a7610d525
fixes from Justin Greer to add -D option to include deleted items, to add missing email headers, to fix bug in my_stristr()
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Thu, 02 Oct 2008 15:29:36 -0700 |
parents |
c508ee15dfca |
children |
0f1492b7fe8b |
rev |
line source |
16
|
1 #ifndef __TIMECONV_H
|
|
2 #define __TIMECONV_H
|
|
3
|
|
4 #include "common.h"
|
|
5
|
|
6 #include <time.h>
|
|
7
|
|
8 #ifdef __cplusplus
|
|
9 extern "C" {
|
|
10 #endif
|
|
11 time_t fileTimeToUnixTime( const FILETIME *filetime, DWORD *remainder );
|
|
12
|
|
13 char * fileTimeToAscii (const FILETIME *filetime);
|
|
14
|
|
15 struct tm * fileTimeToStructTM (const FILETIME *filetime);
|
|
16
|
|
17 #ifdef __cplusplus
|
|
18 }
|
|
19 #endif
|
|
20
|
|
21 #endif
|