The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/openzfs/include/sys/lua/lualib.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2 ** $Id: lualib.h,v 1.43.1.1 2013/04/12 18:48:47 roberto Exp $
    3 ** Lua standard libraries
    4 ** See Copyright Notice in lua.h
    5 */
    6 
    7 
    8 #ifndef lualib_h
    9 #define lualib_h
   10 
   11 #include <sys/lua/lua.h>
   12 
   13 
   14 
   15 LUAMOD_API int (luaopen_base) (lua_State *L);
   16 
   17 #define LUA_COLIBNAME   "coroutine"
   18 LUAMOD_API int (luaopen_coroutine) (lua_State *L);
   19 
   20 #define LUA_TABLIBNAME  "table"
   21 LUAMOD_API int (luaopen_table) (lua_State *L);
   22 
   23 #define LUA_IOLIBNAME   "io"
   24 LUAMOD_API int (luaopen_io) (lua_State *L);
   25 
   26 #define LUA_OSLIBNAME   "os"
   27 LUAMOD_API int (luaopen_os) (lua_State *L);
   28 
   29 #define LUA_STRLIBNAME  "string"
   30 LUAMOD_API int (luaopen_string) (lua_State *L);
   31 
   32 #define LUA_BITLIBNAME  "bit32"
   33 LUAMOD_API int (luaopen_bit32) (lua_State *L);
   34 
   35 #define LUA_MATHLIBNAME "math"
   36 LUAMOD_API int (luaopen_math) (lua_State *L);
   37 
   38 #define LUA_DBLIBNAME   "debug"
   39 LUAMOD_API int (luaopen_debug) (lua_State *L);
   40 
   41 #define LUA_LOADLIBNAME "package"
   42 LUAMOD_API int (luaopen_package) (lua_State *L);
   43 
   44 
   45 /* open all previous libraries */
   46 LUALIB_API void (luaL_openlibs) (lua_State *L);
   47 
   48 
   49 
   50 #if !defined(lua_assert)
   51 #define lua_assert(x)   ((void)0)
   52 #endif
   53 
   54 
   55 #endif

Cache object: 4719391767784835ad760757012cf194


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.