qse/ase/stx/token.h

65 lines
1.2 KiB
C
Raw Normal View History

2005-05-22 10:32:37 +00:00
/*
2005-06-08 16:05:41 +00:00
* $Id: token.h,v 1.9 2005-06-08 16:00:51 bacon Exp $
2005-05-22 10:32:37 +00:00
*/
#ifndef _XP_STX_TOKEN_H_
#define _XP_STX_TOKEN_H_
#include <xp/stx/stx.h>
2005-06-02 16:14:58 +00:00
enum
{
2005-06-05 16:44:05 +00:00
XP_STX_TOKEN_END = 0,
XP_STX_TOKEN_CHARLIT,
XP_STX_TOKEN_STRLIT,
2005-06-07 16:09:58 +00:00
XP_STX_TOKEN_NUMLIT,
2005-06-05 16:44:05 +00:00
XP_STX_TOKEN_IDENT,
2005-06-08 03:19:31 +00:00
XP_STX_TOKEN_BINARY,
2005-06-06 16:04:18 +00:00
XP_STX_TOKEN_KEYWORD,
2005-06-08 15:49:35 +00:00
XP_STX_TOKEN_PRIMITIVE,
2005-06-07 16:09:58 +00:00
XP_STX_TOKEN_ASSIGN,
XP_STX_TOKEN_COLON,
XP_STX_TOKEN_RETURN,
XP_STX_TOKEN_BAR,
XP_STX_TOKEN_LBRACKET,
XP_STX_TOKEN_RBRACKET,
2005-06-08 15:49:35 +00:00
XP_STX_TOKEN_PERIOD
2005-06-02 16:14:58 +00:00
};
2005-05-22 10:32:37 +00:00
struct xp_stx_token_t
{
int type;
/*
xp_stx_int_t ivalue;
xp_stx_real_t fvalue;
*/
2005-06-08 16:05:41 +00:00
xp_word_t capacity;
xp_word_t size;
xp_char_t* buffer;
2005-05-22 10:32:37 +00:00
xp_bool_t __malloced;
};
typedef struct xp_stx_token_t xp_stx_token_t;
#ifdef __cplusplus
extern "C" {
#endif
xp_stx_token_t* xp_stx_token_open (
2005-06-08 16:05:41 +00:00
xp_stx_token_t* token, xp_word_t capacity);
2005-05-22 10:32:37 +00:00
void xp_stx_token_close (xp_stx_token_t* token);
2005-06-08 16:05:41 +00:00
int xp_stx_token_addc (xp_stx_token_t* token, xp_cint_t c);
2005-05-22 13:41:14 +00:00
void xp_stx_token_clear (xp_stx_token_t* token);
2005-06-08 16:05:41 +00:00
xp_char_t* xp_stx_token_yield (xp_stx_token_t* token, xp_word_t capacity);
int xp_stx_token_compare (xp_stx_token_t* token, const xp_char_t* str);
2005-05-22 10:32:37 +00:00
#ifdef __cplusplus
}
#endif
#endif