ddnet/src/engine/server/sql_string_helpers.h

17 lines
308 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);
2017-03-21 10:24:44 +00:00
void AgoTimeToString(int agoTime, char *pAgoString);
}
#endif