SDL-mirror/test/test-automation/logger_helpers.h
2011-06-28 17:03:38 +03:00

16 lines
294 B
C

#ifndef _LOGGER_HELPERS_G
#define _LOGGER_HELPERS_G
#include <time.h>
char *IntToString(const int integer);
char *DoubleToString(const double decimal);
char *TimestampToString(const time_t timestamp);
char *ToLowerCase(const char *string);
int ValidateString(const char *string);
#endif