|
Is there any way that I can convert my C codes to Lua?
In what sense? Do you want to use your compiled C function in Lua, or do you want to convert a C procedure into its equivalent in Lua? If the latter, it depends on how complex the code in question is: mathematic operations can be copied and pasted with no changes, but things such as pointer arithmetic will require heavy re-architecting of the code's design.