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
16