Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/intern/string.c
| Context not available. | |||||
| if (startMatch) { | if (startMatch) { | ||||
| const size_t prefixLen = strlen(prefix); | const size_t prefixLen = strlen(prefix); | ||||
| startMatch += prefixLen + 1; | startMatch += prefixLen + 1; | ||||
| /* get the end point (i.e. where the next occurance of " is after the starting point) */ | /* get the end point (i.e. where the next occurrence of " is after the starting point) */ | ||||
| endMatch = startMatch; | endMatch = startMatch; | ||||
| while ((endMatch = strchr(endMatch, '"'))) { | while ((endMatch = strchr(endMatch, '"'))) { | ||||
| Context not available. | |||||