qse/ase/lsp/token.h

40 lines
874 B
C
Raw Normal View History

2005-02-04 15:39:11 +00:00
/*
2005-02-04 16:03:25 +00:00
* $Id: token.h,v 1.3 2005-02-04 16:03:25 bacon Exp $
2005-02-04 15:39:11 +00:00
*/
2005-02-04 16:00:37 +00:00
#ifndef _XP_LISP_TOKEN_H_
#define _XP_LISP_TOKEN_H_
2005-02-04 15:39:11 +00:00
2005-02-04 16:03:25 +00:00
#include <xp/lisp/types.h>
2005-02-04 15:39:11 +00:00
struct xp_lisp_token_t
{
int type;
xp_lisp_int ivalue;
xp_lisp_float fvalue;
xp_size_t capacity;
xp_size_t size;
xp_lisp_char* buffer;
};
typedef struct xp_lisp_token_t xp_lisp_token_t;
#ifdef __cplusplus
extern "C" {
#endif
xp_lisp_token_t* xp_lisp_token_new (xp_size_t capacity);
void xp_lisp_token_free (xp_lisp_token_t* token);
int xp_lisp_token_addc (xp_lisp_token_t* token, xp_lisp_cint c);
void xp_lisp_token_clear (xp_lisp_token_t* token);
xp_lisp_char* xp_lisp_token_transfer (xp_lisp_token_t* token, xp_size_t capacity);
int xp_lisp_token_compare (xp_lisp_token_t* token, const xp_lisp_char* str);
#ifdef __cplusplus
}
#endif
#endif