view lwbasic/symtab.h @ 215:5330ba70836a

Fix undefined symbol error with pragma nosymbolcase Made symbol tree lookup handle case sensitivity correctly. It is not sufficient to switch which of strcmp and strcasecmp is used to do the lookups. Instead, one must use strcasecmp all the way until a match and then use additional sorting once a match is achieved, if relevant. In this case, a simple linked list of symbols that differ only in case since this is not expected to be a common case.
author William Astle <lost@l-w.ca>
date Sun, 10 Jun 2012 13:29:23 -0600
parents 49d608aecc4d
children
line wrap: on
line source

/*
symtab.h

Copyright © 2011 William Astle

This file is part of LWTOOLS.

LWTOOLS is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.

This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.

You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>.
*/

/*
Symbol table handling
*/

#ifndef __symtab_h_seen__
#define __symtab_h_seen__

#ifndef __symtab_c_seen__
#define __E extern
#else
#define __E
#endif

/*
the meaning of "addr" and "symtype" is defined by the particular context
in which the symbol table is used
*/
typedef struct symtab_entry_s symtab_entry_t;
struct symtab_entry_s
{
	char *name;				/* name of the symbol */
	int addr;				/* address of symbol */
	int symtype;			/* type of symbol */
	void *privdata;			/* random data associated with symbol */	
	symtab_entry_t *next;	/* next in the list */
};

typedef struct symtab_s
{
	symtab_entry_t *head;
} symtab_t;

__E symtab_t *symtab_init(void);
__E void symtab_destroy(symtab_t *st);
__E symtab_entry_t *symtab_find(symtab_t *st, char *name);
__E void symtab_register(symtab_t *st, char *name, int addr, int symtype, void *data);

#undef __E

#endif /* __symtab_h_seen__ */