Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2020-12-10 06:23:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-12-10 06:55:28 +0300
commit564ef8279b5f7b25a4a5f23877c70135c1ec920a (patch)
treefc43d8e407c5432971c5362390f7666ae52e8e2d /source/blender/blenlib/intern/string.c
parentb5bc9d80a11dc99a296d0621bf3fdd156b70b754 (diff)
Cleanup: use snake-case instead of camel-case
Diffstat (limited to 'source/blender/blenlib/intern/string.c')
-rw-r--r--source/blender/blenlib/intern/string.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/blenlib/intern/string.c b/source/blender/blenlib/intern/string.c
index 98eed838197..c4b51338360 100644
--- a/source/blender/blenlib/intern/string.c
+++ b/source/blender/blenlib/intern/string.c
@@ -412,27 +412,27 @@ size_t BLI_str_unescape(char *__restrict dst, const char *__restrict src, const
*/
char *BLI_str_quoted_substrN(const char *__restrict str, const char *__restrict prefix)
{
- const char *startMatch, *endMatch;
+ const char *start_match, *end_match;
- /* get the starting point (i.e. where prefix starts, and add prefixLen+1
+ /* get the starting point (i.e. where prefix starts, and add prefix_len+1
* to it to get be after the first " */
- startMatch = strstr(str, prefix);
- if (startMatch) {
- const size_t prefixLen = strlen(prefix);
- startMatch += prefixLen + 1;
+ start_match = strstr(str, prefix);
+ if (start_match) {
+ const size_t prefix_len = strlen(prefix);
+ start_match += prefix_len + 1;
/* get the end point (i.e. where the next occurrence of " is after the starting point) */
- endMatch = startMatch;
- while ((endMatch = strchr(endMatch, '"'))) {
- if (LIKELY(*(endMatch - 1) != '\\')) {
+ end_match = start_match;
+ while ((end_match = strchr(end_match, '"'))) {
+ if (LIKELY(*(end_match - 1) != '\\')) {
break;
}
- endMatch++;
+ end_match++;
}
- if (endMatch) {
+ if (end_match) {
/* return the slice indicated */
- return BLI_strdupn(startMatch, (size_t)(endMatch - startMatch));
+ return BLI_strdupn(start_match, (size_t)(end_match - start_match));
}
}
return BLI_strdupn("", 0);