2011-06-28 17:03:38 +03:00
|
|
|
#ifndef _LOGGER_HELPERS_G
|
|
|
|
#define _LOGGER_HELPERS_G
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
char *IntToString(const int integer);
|
|
|
|
|
2011-08-02 12:46:40 +03:00
|
|
|
char *IntToHexString(const Uint64 integer);
|
2011-07-25 19:33:32 +03:00
|
|
|
|
2011-06-28 17:03:38 +03:00
|
|
|
char *DoubleToString(const double decimal);
|
|
|
|
|
|
|
|
char *TimestampToString(const time_t timestamp);
|
|
|
|
|
|
|
|
char *ToLowerCase(const char *string);
|
|
|
|
|
|
|
|
int ValidateString(const char *string);
|
|
|
|
|
|
|
|
#endif
|