Lines Matching refs:semicolon
217 char *semicolon;
222 if ((semicolon = strchr(r, ';')) != NULL) {
223 if (*(semicolon-1) != '\\') {
224 r = semicolon;
228 size_t size_left = strlen(semicolon);
229 memmove(semicolon-1, semicolon, size_left);
230 *(semicolon + size_left - 1) = '\0';
231 /* r will now point at the character after the semicolon */
232 r = semicolon;
235 } while (semicolon != NULL);
237 if (semicolon != NULL) {