qse/ase/stx/symbol.h

28 lines
609 B
C
Raw Normal View History

2005-05-17 16:18:56 +00:00
/*
2005-05-18 04:01:51 +00:00
* $Id: symbol.h,v 1.2 2005-05-18 04:01:51 bacon Exp $
2005-05-17 16:18:56 +00:00
*/
#ifndef _XP_STX_SYMBOL_H_
#define _XP_STX_SYMBOL_H_
#include <xp/stx/stx.h>
#ifdef __cplusplus
extern "C" {
#endif
xp_stx_word_t xp_stx_new_symbol_link (xp_stx_t* stx, xp_stx_word_t sym);
xp_stx_word_t xp_stx_new_symbol (xp_stx_t* stx, const xp_stx_char_t* name);
xp_stx_word_t xp_stx_new_symbol_pp (
xp_stx_t* stx, const xp_stx_char_t* name,
const xp_stx_char_t* prefix, const xp_stx_char_t* postfix);
2005-05-18 04:01:51 +00:00
void xp_stx_traverse_symbol_table (
xp_stx_t* stx, void (*func) (xp_stx_t*,xp_stx_word_t));
2005-05-17 16:18:56 +00:00
#ifdef __cplusplus
}
#endif
#endif