DDraceNetwork Docs
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
6void FuzzyString(char *pString, int Size);
7
8// written number of added bytes
9int EscapeLike(char *pDst, const char *pSrc, int DstSize);
10
11void AgoTimeToString(int AgoTime, char *pAgoString, int Size);
12
13} // namespace sqlstr
14
15#endif
Definition: sql_string_helpers.h:4
void FuzzyString(char *pString, int Size)
Definition: sql_string_helpers.cpp:6
int EscapeLike(char *pDst, const char *pSrc, int DstSize)
Definition: sql_string_helpers.cpp:26
void AgoTimeToString(int AgoTime, char *pAgoString, int Size)
Definition: sql_string_helpers.cpp:42