• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D20-Jun-2003236 128

Makefile.inH A D03-May-20228.3 KiB300230

READMEH A D14-Feb-2002356 76

lauxlib.cH A D14-Feb-20025 KiB217150

lbaselib.cH A D12-Jul-200216.7 KiB652515

ldblib.cH A D14-Feb-20024.1 KiB189147

liolib.cH A D30-Jun-200318.7 KiB748580

lmathlib.cH A D14-Feb-20025.2 KiB239181

lstrlib.cH A D14-Feb-200217 KiB622523

README

1This is the standard Lua library.
2It is implemented entirely on top of the official Lua API as declared in lua.h,
3using lauxlib.c, which contains several useful functions for writing libraries.
4We encourage developers to use lauxlib.c in their own libraries.
5The code of the standard library can be read as an example of how to export
6C functions to Lua.
7