tlang-c/wrappergen
Mike Nolan 362924c107 Added ret, break and also rand 2023-05-05 23:03:12 -05:00
..
example-c-code Inital Commit 2023-04-24 13:41:46 -05:00
src about to add ret and break 2023-05-05 21:28:23 -05:00
Makefile Added ret, break and also rand 2023-05-05 23:03:12 -05:00
README.txt Inital Commit 2023-04-24 13:41:46 -05:00

README.txt

TLANG WRAPPER GENERATOR
REFERENCE:
END: End Of FILE
NAME: the name of the c file and the tlang dict name
INCLUDE_PATH: #include <WHATEVERYOUTYPEAFTER INCLUDE_PATH: >
INCLUDE: #include "WHATEVERYOUTYPEAFTER INCLUDE: "
FUNCTION: TLang Signature = C Signature (ex number tlangFunc(string,char,number,bool) = int tlangFunc(const char* c,char a,int32_t num,bool someBool))
NUMBER: VARIABLE_NAME 42.5
CHAR: VARIABLE_NAME j
STRING: VARIABLE_NAME YOUR TEXT STRING\" supports C escaping (hince it is passed into C compiler)
TRUE: SOME_CONSTANT_TRUE_VALUE
FALSE: SOME_CONSTANT_FALSE_VALUE
NULL: SOME_CONSTANT_NULL_VALUE