*** empty log message ***

This commit is contained in:
2005-05-22 04:11:54 +00:00
parent 1ce7078d50
commit 23c82ec467
4 changed files with 69 additions and 7 deletions

View File

@@ -1,16 +1,26 @@
/*
* $Id: parser.h,v 1.1 2005-05-12 15:49:07 bacon Exp $
* $Id: parser.h,v 1.2 2005-05-22 04:11:54 bacon Exp $
*/
#ifndef _XP_STX_PARSER_H_
#define _XP_STX_PARSER_H_
#include <xp/stx/stx.h>
struct xp_stx_parser_t
{
xp_bool_t __malloced;
};
typedef struct xp_stx_parser_t xp_stx_parser_t;
#ifdef __cplusplus
extern "C" {
#endif
int xp_stx_parse (
xp_stx_t* stx, xp_stx_word_t method, const xp_char_t* text);
xp_stx_parser_t* xp_stx_parser_open (xp_stx_parser_t* parser);
int xp_stx_parser_close (xp_stx_parser_t* parser);
int xp_stx_parser_parse (xp_stx_parser_t* parser, const xp_char_t* text);
#ifdef __cplusplus
}