SDL-mirror/test/test-automation/logger_helpers.h

19 lines
339 B
C
Raw Normal View History

2011-06-28 17:03:38 +03:00
#ifndef _LOGGER_HELPERS_G
#define _LOGGER_HELPERS_G
#include <time.h>
char *IntToString(const int integer);
char *IntToHexString(const Uint64 integer);
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