Complete GET INDEX OF
Created by: Lartu
At the moment the skeleton for a GET INDEX OF statement is defined within ldpl.cpp but it's not been fully written.
if(line_like("GET INDEX OF $str-expr FROM $str-expr IN $num-var", tokens, state))
{
if(state.section_state != 2)
error("GET INDEX OF statement outside PROCEDURE section (\033[0m" + current_file + ":"+ to_string(line_num)+"\033[1;31m)");
//C Code
//TODO
return;
}
This should be completed.