Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Lua Quick Start Guide

You're reading from  Lua Quick Start Guide

Product type Book
Published in Jul 2018
Publisher Packt
ISBN-13 9781789343229
Pages 202 pages
Edition 1st Edition
Languages
Author (1):
Gabor Szauer Gabor Szauer
Profile icon Gabor Szauer

Working with the C API

The Lua C API is efficient and lightweight. There are a few important header files we need to be familiar with before writing any C code. These files are the following:

  • lua.h: Provides all the functions needed to work with Lua. All functions in this file are prefixed with lua_.
  • luaxlib.h: Uses the public API exposed in lua.h to provide higher levels of abstraction for common tasks. All functions in this file are prefixed with luaL_.
  • lualib.h: Provides the standard Lua libraries. All functions in this file are also prefixed with luaL_.

Lua does not allocate any global memory. Instead it stores all of its states in a structure called lua_State. This structure contains everything that the Lua runtime needs to operate. Putting a mutex lock around your lua_State object is a fast and easy way to make sure any Lua instance is thread safe. It's perfectly...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}