TODO: Implement gAddressExt group
[libisds.git] / src / system.h
blobffcbe9443bbe5ad5ec25e29eba8924d2ee4b5823
1 #ifndef __ISDS_SYSTEM_H__
2 #define __ISDS_SYSTEM_H__
4 #include "isds.h"
6 #ifdef _WIN32
7 #include "win32.h"
8 #else
9 #include "unix.h"
10 #endif
12 /* Convert UTF-8 @string representation of ISO 8601 date to @time.
13 * XXX: Not all ISO formats are supported */
14 isds_error _isds_datestring2tm(const xmlChar *string, struct tm *time);
15 #endif