*** empty log message ***

This commit is contained in:
2005-06-08 16:05:41 +00:00
parent f3dc7b12d6
commit 8a69307e57
13 changed files with 203 additions and 229 deletions

View File

@@ -1,5 +1,5 @@
/*
* $Id: symbol.h,v 1.5 2005-05-23 15:51:03 bacon Exp $
* $Id: symbol.h,v 1.6 2005-06-08 16:00:51 bacon Exp $
*/
#ifndef _XP_STX_SYMBOL_H_
@@ -14,8 +14,8 @@
struct xp_stx_symlink_t
{
xp_stx_objhdr_t header;
xp_stx_word_t link;
xp_stx_word_t symbol;
xp_word_t link;
xp_word_t symbol;
};
typedef struct xp_stx_symlink_t xp_stx_symlink_t;
@@ -24,18 +24,18 @@ typedef struct xp_stx_symlink_t xp_stx_symlink_t;
extern "C" {
#endif
xp_stx_word_t xp_stx_new_symbol_link (xp_stx_t* stx, xp_stx_word_t sym);
xp_word_t xp_stx_new_symbol_link (xp_stx_t* stx, xp_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_symbolx (
xp_stx_t* stx, const xp_stx_char_t* name, xp_stx_word_t len);
xp_word_t xp_stx_new_symbol (
xp_stx_t* stx, const xp_char_t* name);
xp_word_t xp_stx_new_symbolx (
xp_stx_t* stx, const xp_char_t* name, xp_word_t len);
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);
xp_word_t xp_stx_new_symbol_pp (
xp_stx_t* stx, const xp_char_t* name,
const xp_char_t* prefix, const xp_char_t* postfix);
void xp_stx_traverse_symbol_table (
xp_stx_t* stx, void (*func) (xp_stx_t*,xp_stx_word_t));
xp_stx_t* stx, void (*func) (xp_stx_t*,xp_word_t));
#ifdef __cplusplus
}