# cwrap **Repository Path**: duicym/cwrap ## Basic Information - **Project Name**: cwrap - **Description**: No description available - **Primary Language**: Lua - **License**: BSD-3-Clause-Clear - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-11-08 - **Last Updated**: 2024-10-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CWrap package # The __cwrap__ package helps you to automate the generation of Lua/C wrappers around existing C functions, such that these functions would be callable from Lua. This package is used by the __torch__ package, but does not depend on anything, and could be used by anyone using Lua. The documentation is organized as follows : * [Example Use Case](doc/example.md) * [High Level Interface](doc/highlevelinterface.md) * [Argument Types](doc/argumenttypes.md) * [User Types](doc/usertypes.md) __DISCLAIMER__ Before going any further, we assume the reader has a good knowledge of how to interface C functions with Lua. A good start would be the [Lua reference manual](http://www.lua.org/manual/5.1), or the book [Programming in Lua](http://www.inf.puc-rio.br/~roberto/pil2).