ddnet/src/engine/server/sql_string_helpers.h

16 lines
338 B
C
Raw Normal View History

#ifndef ENGINE_SERVER_SQL_STRING_HELPERS_H
#define ENGINE_SERVER_SQL_STRING_HELPERS_H
namespace sqlstr {
2016-09-25 08:41:34 +00:00
void FuzzyString(char *pString, int size);
// written number of added bytes
int EscapeLike(char *pDst, const char *pSrc, int DstSize);
void AgoTimeToString(int agoTime, char *pAgoString, int Size);
} // namespace sqlstr
#endif