Home | History | Annotate | Download | only in jhead

Lines Matching refs:Line

37 // Command line options flags
83 static char * CommentInsertLiteral = NULL; // Insert this comment (from command line)
206 char Line[500];
220 // Process the line.
222 Line[Len] = 0;
223 //printf("Line: '%s'\n",Line);
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];
1204 // complain about bad state of the command line.
1360 // Parse specified date or date+time from command line.