From c416502a8fb734249653de90b283fd43ebaf307b Mon Sep 17 00:00:00 2001 From: Rutger Hofman Date: Sat, 2 May 2009 21:51:58 +0000 Subject: [PATCH] Add include/urjtag/parse.h git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1549 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- urjtag/include/urjtag/parse.h | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 urjtag/include/urjtag/parse.h diff --git a/urjtag/include/urjtag/parse.h b/urjtag/include/urjtag/parse.h new file mode 100644 index 00000000..d9419393 --- /dev/null +++ b/urjtag/include/urjtag/parse.h @@ -0,0 +1,37 @@ +/* + * $Id: parse.h 1544 2009-05-01 12:55:19Z rfhh $ + * + * Copyright (C) 2003 ETC s.r.o. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + * + * Written by Marcel Telka , 2003. + * + */ + +#ifndef URJ_PARSE_H +#define URJ_PARSE_H + +#include + +#include "types.h" + +int urj_parse_file (urj_chain_t *chain, const char *filename); +int urj_parse_line (urj_chain_t *chain, char *line); +int urj_parse_stream (urj_chain_t *chain, FILE * f); + +#endif /* URJ_PARSE_H */ +