rbtree

diff test/rbshell/sym.h @ 6:028a21468abf

added rbshell test
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 12 Oct 2011 07:03:03 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/rbshell/sym.h	Wed Oct 12 07:03:03 2011 +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_ */