rbtree
annotate test/rbshell/sym.h @ 13:5b955b3a4675
readme, copying, copyright headers
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 17 Apr 2014 13:35:43 +0300 |
parents | |
children |
rev | line source |
---|---|
nuclear@6 | 1 #ifndef SYM_H_ |
nuclear@6 | 2 #define SYM_H_ |
nuclear@6 | 3 |
nuclear@6 | 4 int init_sym(void); |
nuclear@6 | 5 void destroy_sym(void); |
nuclear@6 | 6 |
nuclear@6 | 7 int add_sym(const char *name, int id, int arity); |
nuclear@6 | 8 |
nuclear@6 | 9 int sym_lookup(const char *str); |
nuclear@6 | 10 int sym_arity(const char *str); |
nuclear@6 | 11 |
nuclear@6 | 12 #endif /* SYM_H_ */ |