update src/dataString.c.

This commit is contained in:
李昂 2023-05-01 12:12:39 +00:00 committed by Gitee
parent f1154e5e0f
commit 322893880a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -94,7 +94,7 @@ const char bracketStart[] = {'(', '[', '{', '\'', '\"'};
const char bracketEnd[] = {')', ']', '}', '\'', '\"'};
#define BRACKET_TYPE_NUM (sizeof(bracketStart) / sizeof(char))
int32_t _strCountSign(char* strIn, char sign, PIKA_BOOL bracketDepth0) {
int _strCountSign(char* strIn, char sign, PIKA_BOOL bracketDepth0) {
int32_t iCount = 0;
int32_t iTotalDepth = 0;
PIKA_BOOL bEscaped = PIKA_FALSE;