mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-22 17:42:39 +00:00
22 lines
420 B
C
22 lines
420 B
C
|
#ifndef DATE_H_INCLUDED
|
||
|
#define DATE_H_INCLUDED
|
||
|
|
||
|
#include <time.h>
|
||
|
|
||
|
#include "bool.h"
|
||
|
|
||
|
void
|
||
|
DateToString(time_t const datetime,
|
||
|
const char ** const dateStringP);
|
||
|
|
||
|
void
|
||
|
DateToLogString(time_t const datetime,
|
||
|
const char ** const dateStringP);
|
||
|
|
||
|
void
|
||
|
DateDecode(const char * const dateString,
|
||
|
bool * const validP,
|
||
|
time_t * const datetimeP);
|
||
|
|
||
|
#endif
|