pull/6753/head
Gokhan Gulbiz 2023-03-23 10:20:50 +03:00
parent 852db8f2f9
commit 3d9f40d22a
No known key found for this signature in database
GPG Key ID: 608EF06B6BD1B45B
1 changed files with 30 additions and 28 deletions

View File

@ -647,6 +647,7 @@ ExtractTopComment(const char *inputString)
return commentData->data;
}
/* EscapeCommentChars adds a backslash before each occurrence of '*' or '/' in the input string */
static char *
EscapeCommentChars(const char *str)
@ -668,6 +669,7 @@ EscapeCommentChars(const char *str)
return escapedString->data;
}
/* UnescapeCommentChars removes the backslash that precedes '*' or '/' in the input string. */
static char *
UnescapeCommentChars(const char *str)