lua 0.0.10

Bindings to Lua 5.3
Documentation
/* this file was generated by glue.c; do not modify it by hand */
#![allow(unused_imports, dead_code, non_camel_case_types)]
use libc::{c_int, c_uint, c_long, c_ulong, c_longlong, c_ulonglong};
use libc::{c_float, c_double};
use libc::{intptr_t, ptrdiff_t};
/* luaconf.h */
pub const LUA_VDIR: &'static str = "5.3";
pub const LUA_PATH_DEFAULT: &'static str = "/usr/local/share/lua/5.3/?.lua;/usr/local/share/lua/5.3/?/init.lua;/usr/local/lib/lua/5.3/?.lua;/usr/local/lib/lua/5.3/?/init.lua;./?.lua;./?/init.lua";
pub const LUA_CPATH_DEFAULT: &'static str = "/usr/local/lib/lua/5.3/?.so;/usr/local/lib/lua/5.3/loadall.so;./?.so";
pub const LUA_DIRSEP: &'static str = "/";
pub const LUA_EXTRASPACE: c_int = 4;
pub const LUA_IDSIZE: c_int = 60;
pub const LUAI_MAXSHORTLEN: c_int = 40;
pub type LUA_KCONTEXT = ptrdiff_t;
pub const LUAI_BITSINT: c_int = 32;
pub const LUAI_MAXSTACK: c_int = 1000000;
pub const LUAI_FIRSTPSEUDOIDX: c_int = -1001000;
pub const LUAL_BUFFERSIZE: c_int = 4096;
pub type LUA_NUMBER = c_double;
pub type LUA_UNSIGNED = c_ulonglong;
pub type LUA_INTEGER = c_longlong;
pub const LUA_MAXINTEGER: LUA_INTEGER = 9223372036854775807;
pub const LUA_MININTEGER: LUA_INTEGER = -9223372036854775808;
/* lua.h */
pub const LUA_VERSION_MAJOR: &'static str = "5";
pub const LUA_VERSION_MINOR: &'static str = "3";
pub const LUA_VERSION_NUM: c_int = 503;
pub const LUA_VERSION_RELEASE: &'static str = "0";
pub const LUA_VERSION: &'static str = "Lua 5.3";
pub const LUA_RELEASE: &'static str = "Lua 5.3.0";
pub const LUA_COPYRIGHT: &'static str = "Lua 5.3.0  Copyright (C) 1994-2015 Lua.org, PUC-Rio";
pub const LUA_AUTHORS: &'static str = "R. Ierusalimschy, L. H. de Figueiredo, W. Celes";
/* lauxlib.h */
pub const LUAL_NUMSIZES: c_int = 136;
pub const LUA_FILEHANDLE: &'static str = "FILE*";
/* lualib.h */
pub const LUA_COLIBNAME: &'static str = "coroutine";
pub const LUA_TABLIBNAME: &'static str = "table";
pub const LUA_IOLIBNAME: &'static str = "io";
pub const LUA_OSLIBNAME: &'static str = "os";
pub const LUA_STRLIBNAME: &'static str = "string";
pub const LUA_UTF8LIBNAME: &'static str = "utf8";
pub const LUA_BITLIBNAME: &'static str = "bit32";
pub const LUA_MATHLIBNAME: &'static str = "math";
pub const LUA_DBLIBNAME: &'static str = "debug";
pub const LUA_LOADLIBNAME: &'static str = "package";