mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 03:58:18 +00:00
3be8a592e5
Purely automatic change. In case of conflict with this change, apply the other change and rerun the formatting to restore it: $ python scripts/fix_style.py
16 lines
328 B
C++
16 lines
328 B
C++
#ifndef ENGINE_SERVER_SQL_STRING_HELPERS_H
|
|
#define ENGINE_SERVER_SQL_STRING_HELPERS_H
|
|
|
|
namespace sqlstr {
|
|
|
|
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);
|
|
|
|
} // namespace sqlstr
|
|
|
|
#endif
|