This commit is contained in:
Paul 2000-12-15 20:29:33 +00:00
parent 48629e2f3d
commit e98f64c419
20 changed files with 1052 additions and 637 deletions

View file

@ -34,14 +34,6 @@
Structure defintions
-------------------- */
struct FunctionDef
{
int m_functionNumber;
char *m_name;
int m_argCount;
};
/*----------------------------------------------------------------------
Globals
------- */
@ -50,11 +42,11 @@ struct FunctionDef
Functions
--------- */
extern FunctionDef *lookupFunctionName(char *_name);
extern int lookupFunctionName(char *_name);
extern int getFunctionArgCount(int _functionNumber);
extern CTreeNode *getFunctionArgs(int _argCount);
extern CTreeNode *getFunctionArgs(int _functionNumber);
/*---------------------------------------------------------------------- */