lfunc.h 417 B

1234567891011121314151617181920212223
  1. /*
  2. ** $Id: lfunc.h,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $
  3. ** Lua Function structures
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lfunc_h
  7. #define lfunc_h
  8. #include "lobject.h"
  9. TProtoFunc *luaF_newproto (void);
  10. Closure *luaF_newclosure (int nelems);
  11. void luaF_freeproto (TProtoFunc *l);
  12. void luaF_freeclosure (Closure *l);
  13. char *luaF_getlocalname (TProtoFunc *func, int local_number, int line);
  14. #endif