1 | #ifndef ENGINE_SERVER_SQL_STRING_HELPERS_H |
---|---|
2 | #define ENGINE_SERVER_SQL_STRING_HELPERS_H |
3 | |
4 | namespace 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 | } // namespace sqlstr |
14 | |
15 | #endif |
16 |