https://github.com/likema/lua-uuid
UUID library for Lua 5.1
https://github.com/likema/lua-uuid
Last synced: 8 months ago
JSON representation
UUID library for Lua 5.1
- Host: GitHub
- URL: https://github.com/likema/lua-uuid
- Owner: likema
- Created: 2014-06-27T19:00:08.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-27T19:02:01.000Z (almost 12 years ago)
- Last Synced: 2025-05-24T09:38:32.283Z (about 1 year ago)
- Language: C
- Homepage:
- Size: 129 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This is a uuid library for Lua 5.1. It generates Universally Unique Identifiers
using libuuid, which is part of the e2fsprogs package and is available at
http://e2fsprogs.sourceforge.net/
If you're running Linux, libuuid is probably already installed.
To try the library, just edit Makefile to reflect your installation of Lua and
possibily of libuuid. Then run make. This will build the library and run a
simple test. For detailed installation instructions, see
http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/install.html
There is no manual but the library is simple and intuitive; see the summary
below. Read also test.lua, which shows the library in action.
This code is hereby placed in the public domain.
Please send comments, suggestions, and bug reports to lhf@tecgraf.puc-rio.br .
-------------------------------------------------------------------------------
uuid library:
isvalid(s) new([s]) time(s) version
-------------------------------------------------------------------------------