Lines Matching refs:stream
26 print_token(isc_token_t *tokenp, FILE *stream) {
29 fprintf(stream, "UNKNOWN");
32 fprintf(stream, "STRING %.*s",
37 fprintf(stream, "NUMBER %lu", tokenp->value.as_ulong);
40 fprintf(stream, "QSTRING \"%.*s\"",
45 fprintf(stream, "EOL");
48 fprintf(stream, "EOF");
51 fprintf(stream, "INITIALWS");
54 fprintf(stream, "SPECIAL %c", tokenp->value.as_char);
57 fprintf(stream, "NOMORE");