Merge pull request #29278 from bfredl/strcat

refactor(memory): use builtin strcat() instead of STRCAT()
This commit is contained in:
bfredl
2024-06-11 19:21:50 +02:00
committed by GitHub
29 changed files with 79 additions and 81 deletions

View File

@@ -11451,7 +11451,7 @@ static void nfa_set_code(int c)
}
if (addnl == true) {
STRCAT(code, " + NEWLINE ");
strcat(code, " + NEWLINE ");
}
}