Lines Matching defs:line
58 static int is_soa_rr (const char *line);
76 ** the first none white space char or to the end of the line
101 /* read until the line matches the beginning of a soa record ... */
119 ** check if line is the beginning of a SOA RR record, thus
123 static int is_soa_rr (const char *line)
127 assert ( line != NULL );
129 if ( (p = strfindstr (line, "IN")) && strfindstr (p+2, "SOA") ) /* line contains "IN" and "SOA" */
131 p = line + strlen (line) - 1;
132 while ( p > line && isspace (*p) )
134 if ( *p == '(' ) /* last character have to be a '(' to start a multi line record */