Function louis_sys::lou_compileString[][src]

pub unsafe extern "C" fn lou_compileString(
    tableList: *const c_char,
    inString: *const c_char
) -> c_int

Compile a table entry on the fly at run-time

This function enables you to compile a table entry on the fly at run-time. The new entry is added to tableList and remains in force until lou_free() is called. If tableList has not previously been loaded it is loaded and compiled.

@param inString contains the table entry to be added. It may be anything valid. Error messages will be produced if it is invalid.

@return 1 on success and 0 on failure.