mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-24 00:18:39 +00:00
14 lines
238 B
C
14 lines
238 B
C
#ifndef MLRDATETIME_H
|
|
#define MLRDATETIME_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
|
|
double get_systime();
|
|
|
|
// portable timegm replacement
|
|
time_t mlr_timegm (struct tm *ptm);
|
|
|
|
#endif // MLRDATETIME_H
|