rbtree

view 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
line source
1 #ifndef SYM_H_
2 #define SYM_H_
4 int init_sym(void);
5 void destroy_sym(void);
7 int add_sym(const char *name, int id, int arity);
9 int sym_lookup(const char *str);
10 int sym_arity(const char *str);
12 #endif /* SYM_H_ */