DDraceNetwork Documentation
Loading...
Searching...
No Matches
sql_string_helpers.h
Go to the documentation of this file.
1#ifndef ENGINE_SERVER_SQL_STRING_HELPERS_H
2#define ENGINE_SERVER_SQL_STRING_HELPERS_H
3
4namespace sqlstr
5{
6 void FuzzyString(char *pString, int Size);
7
8 // written number of added bytes
9 int EscapeLike(char *pDst, const char *pSrc, int DstSize);
10
11 void AgoTimeToString(int AgoTime, char *pAgoString, int Size);
12
13}
14
15#endif
Definition sql_string_helpers.h:5
void FuzzyString(char *pString, int Size)
Definition sql_string_helpers.cpp:7
int EscapeLike(char *pDst, const char *pSrc, int DstSize)
Definition sql_string_helpers.cpp:27
void AgoTimeToString(int AgoTime, char *pAgoString, int Size)
Definition sql_string_helpers.cpp:43