1 /* $Id: cql2xcql.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.
14 int main(int argc, char **argv)
17 CQL_parser cp = cql_parser_create();
19 r = cql_parser_string(cp, argv[1]);
21 r = cql_parser_stdio(cp, stdin);
23 fprintf (stderr, "Syntax error\n");
25 cql_to_xml_stdio(cql_parser_result(cp), stdout);
26 cql_parser_destroy(cp);