Correct comments.
All checks were successful
The build was successful.

This commit is contained in:
Rafal Kupiec 2018-09-10 20:17:42 +02:00
parent 7e754db07f
commit 10d3bfe5e1
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -147,19 +147,19 @@ PH7_PRIVATE char *SyStrtok(char *str, const char *sep) {
static char *s; static char *s;
int i = 0, j = 0; int i = 0, j = 0;
int start = pos; int start = pos;
/* Copying the string for further SyStrtok() calls */ /* Copy the string for further SyStrtok() calls */
if(str != NULL) { if(str != NULL) {
s = str; s = str;
} }
while(s[pos] != '\0') { while(s[pos] != '\0') {
j = 0; j = 0;
/* Comparing of one of the delimiter matches the character in the string */ /* Compare of one of the delimiter matches the character in the string */
while(sep[j] != '\0') { while(sep[j] != '\0') {
if(s[pos] == sep[j]) { if(s[pos] == sep[j]) {
/* Replace the delimter by \0 to break the string */ /* Replace the delimter by \0 to break the string */
s[pos] = '\0'; s[pos] = '\0';
pos++; pos++;
/* Checking for the case where there is no relevant string before the delimeter */ /* Check for the case where there is no relevant string before the delimeter */
if(s[start] != '\0') { if(s[start] != '\0') {
return &s[start]; return &s[start];
} else { } else {