A template parsing library and tool written in C.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
221 B

#ifndef _VARIABLE_H_
#define _VARIABLE_H_
#include <ident.h>
#include <expValue.h>
#include <block.h>
s_ident * getVariable (s_block *, char *);
s_ident * getArray (s_ident *, s_expVal *);
#endif /* _VARIABLE_H_ */