Home | History | Annotate | Download | only in validator

Lines Matching defs:comments

509  * Read a keyword skipping bind comments; spaces, specials, restkeywords. 
514 * * comments are skipped if desired
522 * @param comments: if 0, comments are not possible and become text.
523 * if 1, comments are skipped entirely.
530 readkeyword_bindfile(FILE* in, sldns_buffer* buf, int* line, int comments)
535 if(comments && c == '#') { /* # blabla */
540 } else if(comments && c=='/' && numdone>0 && /* /_/ bla*/
549 } else if(comments && c=='*' && numdone>0 && /* /_* bla *_/ */
646 /* comments value: 1 "000" 1 1 1 "0 0 0 0" 1 */
649 int comments = 1;
653 while((rdlen=readkeyword_bindfile(in, buf, line, comments))) {
663 comments = 0;
673 comments = 1;
675 comments = !comments;
700 comments = 1;