mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-22 09:37:04 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
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
|