REVIEWED: EscapeBackslashes() in raylib-parser

This commit is contained in:
Ray 2021-12-16 14:59:40 +01:00
parent fffd78e7c8
commit 55d310fcc3

View file

@ -139,7 +139,7 @@ static void GetDataTypeAndName(const char *typeName, int typeNameLen, char *type
static unsigned int TextLength(const char *text); // Get text length in bytes, check for \0 character static unsigned int TextLength(const char *text); // Get text length in bytes, check for \0 character
static bool IsTextEqual(const char *text1, const char *text2, unsigned int count); static bool IsTextEqual(const char *text1, const char *text2, unsigned int count);
static void MemoryCopy(void *dest, const void *src, unsigned int count); static void MemoryCopy(void *dest, const void *src, unsigned int count);
static char* EscapeBackslashes(char *text); static char *EscapeBackslashes(char *text); // Replace '\' by "\\" when exporting to JSON and XML
static void ExportParsedData(const char *fileName, int format); // Export parsed data in desired format static void ExportParsedData(const char *fileName, int format); // Export parsed data in desired format
@ -765,18 +765,26 @@ static bool IsTextEqual(const char *text1, const char *text2, unsigned int count
} }
// Escape backslashes in a string, writing the escaped 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 *EscapeBackslashes(char *text)
{ {
static char buf[256]; static char buffer[256] = { 0 };
char *a = text;
char *b = buf; int count = 0;
do
for (int i = 0; (text[i] != '\0') && (i < 255); i++, count++)
{ {
if (*a == '\\') *b++ = '\\'; buffer[count] = text[i];
*b++ = *a;
if (text[i] == '\\')
{
buffer[count + 1] = '\\';
count++;
}
} }
while (*a++);
return buf; buffer[count] = '\0';
return buffer;
} }
/* /*