1 /* $Id: cqlstdio.c,v 1.1 2003-01-06 08:20:27 adam Exp $
2 Copyright (C) 2002-2003
5 This file is part of the YAZ toolkit.
12 int getbyte_stream(void *client_data)
14 FILE *f = (FILE*) client_data;
22 void ungetbyte_stream (int c, void *client_data)
24 FILE *f = (FILE*) client_data;
31 int cql_parser_stdio(CQL_parser cp, FILE *f)
33 return cql_parser_stream(cp, getbyte_stream, ungetbyte_stream, f);