40 lines
874 B
C
40 lines
874 B
C
/*
|
|
* $Id: token.h,v 1.3 2005-02-04 16:03:25 bacon Exp $
|
|
*/
|
|
|
|
#ifndef _XP_LISP_TOKEN_H_
|
|
#define _XP_LISP_TOKEN_H_
|
|
|
|
#include <xp/lisp/types.h>
|
|
|
|
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
|