scummvm/common/lua
2024-05-18 13:52:31 +02:00
..
COPYRIGHT
double_serialization.cpp JANITORIAL: Fix "the the" and similar typos 2022-07-29 19:36:40 +03:00
double_serialization.h ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
HISTORY
lapi.cpp
lapi.h
lauxlib.cpp
lauxlib.h
lbaselib.cpp
lcode.cpp
lcode.h
ldblib.cpp
ldebug.cpp
ldebug.h
ldo.cpp COMMON: Mark more symbols as const 2023-12-26 20:23:59 +01:00
ldo.h JANITORIAL: Fix funtion typo in ldo.h 2024-05-18 13:52:31 +02:00
lfunc.cpp JANITORIAL: Fix ressurect typo in lfunc.cpp 2024-05-18 13:52:31 +02:00
lfunc.h
lgc.cpp
lgc.h
linit.cpp
liolib.cpp JANITORIAL: Fix sucess typo in variable in liolib.cpp 2024-05-18 13:52:31 +02:00
llex.cpp COMMON: LUA: Replace sprintf -> snprintf 2022-12-16 10:54:49 +01:00
llex.h
llimits.h
lmathlib.cpp JANITORIAL: Fix some lost or outdated URLs in comments 2022-05-19 07:57:31 +03:00
lmem.cpp
lmem.h
loadlib.cpp JANITORIAL: "Mac OS X" and "OS X" to "macOS" in comments 2022-01-29 14:15:05 +01:00
lobject.cpp COMMON: LUA: Replace sprintf -> snprintf 2022-12-16 10:54:49 +01:00
lobject.h
lopcodes.cpp
lopcodes.h
loslib.cpp
lparser.cpp
lparser.h
lstate.cpp
lstate.h
lstring.cpp
lstring.h
lstrlib.cpp COMMON: LUA: Replace sprintf -> snprintf 2022-12-16 10:54:49 +01:00
ltable.cpp
ltable.h
ltablib.cpp
ltm.cpp
ltm.h
lua_persist.cpp ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua_persistence_util.cpp ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua_persistence_util.h ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua_persistence.h ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua_unpersist.cpp ALL: Update ScummVM project license to GPLv3+ 2021-12-26 18:48:43 +01:00
lua.h
luaconf.h COMMON: LUA: Replace sprintf -> snprintf 2022-12-16 10:54:49 +01:00
lualib.h
lvm.cpp COMMON: Forbid use of unsafe sprintf and vsprintf 2022-10-23 22:46:19 +02:00
lvm.h
lzio.cpp
lzio.h
module.mk COMMON: Fix --disable-lua not working. 2022-12-25 15:55:58 +01:00
README
scummvm_file.cpp COMMON: Move Archive API to Path 2023-12-24 13:19:25 +01:00
scummvm_file.h COMMON: Move Archive API to Path 2023-12-24 13:19:25 +01:00

README for Lua 5.1

See INSTALL for installation instructions.
See HISTORY for a summary of changes since the last released version.

* What is Lua?
  ------------
  Lua is a powerful, light-weight programming language designed for extending
  applications. Lua is also frequently used as a general-purpose, stand-alone
  language. Lua is free software.

  For complete information, visit Lua's web site at http://www.lua.org/ .
  For an executive summary, see http://www.lua.org/about.html .

  Lua has been used in many different projects around the world.
  For a short list, see http://www.lua.org/uses.html .

* Availability
  ------------
  Lua is freely available for both academic and commercial purposes.
  See COPYRIGHT and http://www.lua.org/license.html for details.
  Lua can be downloaded at http://www.lua.org/download.html .

* Installation
  ------------
  Lua is implemented in pure ANSI C, and compiles unmodified in all known
  platforms that have an ANSI C compiler. In most Unix-like platforms, simply
  do "make" with a suitable target. See INSTALL for detailed instructions.

* Origin
  ------
  Lua is developed at Lua.org, a laboratory of the Department of Computer
  Science of PUC-Rio (the Pontifical Catholic University of Rio de Janeiro
  in Brazil).
  For more information about the authors, see http://www.lua.org/authors.html .

(end of README)