style: identifiers separation

This commit is contained in:
2025-11-23 13:06:40 +01:00
parent 6b4630f255
commit 2f83bbb21e
4 changed files with 14 additions and 5 deletions
+2 -1
View File
@@ -59,7 +59,8 @@ bool string_is_number(const char *value) {
char *string_replace_at(const char *src, unsigned int from, unsigned int to,
const char *rpl) {
unsigned long src_len, rpl_len;
unsigned long src_len;
unsigned long rpl_len;
char *dst;
src_len = strnlen(src, STR_LEN * STR_LEN);