Update EscapeBackslashes description

This commit is contained in:
eutro 2021-12-16 13:09:37 +00:00
parent 2853e727b7
commit 2c0a5deab6

View File

@ -764,7 +764,7 @@ static bool IsTextEqual(const char *text1, const char *text2, unsigned int count
return result;
}
// Escape backslashes in a string into a static buffer
// Escape backslashes in a string, writing the escaped string into a static buffer
static char* EscapeBackslashes(char *text)
{
static char buf[256];