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
220 B
11 lines
220 B
#ifndef _VARIABLE_H_
|
|
#define _VARIABLE_H_
|
|
|
|
#include <ident.h>
|
|
#include <expValue.h>
|
|
#include <block.h>
|
|
|
|
s_ident * getVariable(s_identList *, char *);
|
|
s_ident * getArray(s_ident *, s_expVal *);
|
|
|
|
#endif /* _VARIABLE_H_ */
|