Lines Matching refs:Line
206 char Line[500];
222 Line[Len] = 0;
228 printf("Error: Unknown tag '%s'\n", Line); // Deletes the tag.
232 if (memcmp(Line, KnownTags[a], l) == 0){
233 if (Line[l] == ' ' || Line[l] == '=' || Line[l] == 0){
235 if (Line[l] == ' ') Line[l] = '='; // Use equal sign for clarity.
240 if (!memcmp(Line, RemComment, l)){
248 if (!memcmp(Line, AddComment, l+1)){
250 strncpy(Line, AddComment, sizeof(Line));
254 strncat(OutComment, Line, MAX_COMMENT_SIZE-5-strlen(OutComment));
261 Line[Len = 0] = 0;
264 Line[Len++] = SrcComment[i];