15 lines
262 B
C
15 lines
262 B
C
#ifndef APPROXIDATE_H
|
|
#define APPROXIDATE_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
/**
|
|
* @param date The date string
|
|
* @param tv Where the time will be placed.
|
|
*
|
|
* @return 0 on success
|
|
* @return 1 on error
|
|
*/
|
|
int approxidate(const char *date, struct timeval *tv);
|
|
|
|
#endif |