rbtree

view test/rbshell/sym.h @ 10:b45febfd2922

fixed all the conversion warnings
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 16 Apr 2012 00:30:59 +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_ */