blob: adcb0b406937725f675ef82342471196cb1f6d65 [file] [log] [blame]
Jeff Thompson9ae4d782013-10-17 10:25:54 -07001/**
2 * Copyright (C) 2013 Regents of the University of California.
3 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
4 * See COPYING for copyright and distribution information.
5 */
6
7#ifndef NDN_TIME_H
8#define NDN_TIME_H
9
Jeff Thompson9a8e82f2013-10-17 14:13:43 -070010#include <ndn-cpp/c/common.h>
11
Jeff Thompson9ae4d782013-10-17 10:25:54 -070012#ifdef __cplusplus
13extern "C" {
14#endif
15
16/**
17 * Use gettimeofday to return the current time in milliseconds.
18 * @return The current time in milliseconds since 1/1/1970, including fractions of a millisecond according to timeval.tv_usec.
19 */
Jeff Thompson9a8e82f2013-10-17 14:13:43 -070020ndn_MillisecondsSince1970
Jeff Thompson9ae4d782013-10-17 10:25:54 -070021ndn_getNowMilliseconds();
22
23#ifdef __cplusplus
24}
25#endif
26
27#endif