https://github.com/bjornbytes/lox
https://github.com/bjornbytes/lox
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bjornbytes/lox
- Owner: bjornbytes
- License: mit
- Created: 2021-01-07T23:46:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-08T08:07:35.000Z (almost 3 years ago)
- Last Synced: 2025-01-21T07:08:34.575Z (over 1 year ago)
- Language: C
- Size: 46.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
lox
===
lox is a **L**oader for **O**pen**X**R. It isn't finished yet.
Differences from the standard loader so far
---
- The standard loader only requires the major and minor API versions to be compatible -- the patch
number can be anything. lox requires the patch version number to also be compatible.
- The standard loader supports creating instances from multiple threads. lox doesn't.
- lox doesn't use secure_getenv, it just reads the environment variable.