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 
35 ndn_MillisecondsSince1970
36 ndn_getNowMilliseconds();
37 
44 ndn_Error
45 ndn_toIsoString(ndn_MillisecondsSince1970 milliseconds, char *isoString);
46 
53 ndn_Error
54 ndn_fromIsoString(const char* isoString, ndn_MillisecondsSince1970 *milliseconds);
55 
56 #ifdef __cplusplus
57 }
58 #endif
59 
60 #endif