rbtree
diff test/rbshell/sym.h @ 9:8d7233ff61d3
merged fixes with rbshell
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 16 Apr 2012 00:26:38 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/test/rbshell/sym.h Mon Apr 16 00:26:38 2012 +0300 1.3 @@ -0,0 +1,12 @@ 1.4 +#ifndef SYM_H_ 1.5 +#define SYM_H_ 1.6 + 1.7 +int init_sym(void); 1.8 +void destroy_sym(void); 1.9 + 1.10 +int add_sym(const char *name, int id, int arity); 1.11 + 1.12 +int sym_lookup(const char *str); 1.13 +int sym_arity(const char *str); 1.14 + 1.15 +#endif /* SYM_H_ */