TinyMAZE/
TinyMAZE/config/
TinyMAZE/doc/
TinyMAZE/run/msgs/
TinyMAZE/src/
TinyMAZE/src/db/
TinyMAZE/src/ident/
TinyMAZE/src/io/
TinyMAZE/src/prog/
TinyMAZE/src/softcode/
TinyMAZE/src/util/
#ifndef FUNCTION_H
#define FUNCTION_H

#define SCFUNC_GLOBAL 0x1   /* Says that anyone can use this function */

struct sc_function_struct
{
  char *name;
  OBJ *owner;
  unsigned long flags;
  int nargs;
  char *value;
  struct sc_function_struct *next;
};

typedef struct sc_function_struct SCFUNC;

extern SCFUNC *sc_function_list;

#endif /* FUNCTION_H */