time.h
1 
21 #ifndef NDN_TIME_H
22 #define NDN_TIME_H
23 
24 #include <ndn-cpp/c/common.h>
25 #include <ndn-cpp/c/errors.h>
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
41 ndn_Error
42 ndn_toIsoString
43  (ndn_MillisecondsSince1970 milliseconds, int includeFraction, char *isoString);
44 
51 ndn_Error
52 ndn_fromIsoString(const char* isoString, ndn_MillisecondsSince1970 *milliseconds);
53 
54 #ifdef __cplusplus
55 }
56 #endif
57 
58 #endif