END_PARSE

Previous  Next

 

END_PARSE

 


 

Ends parsing of parameters and makes sure we have an ending bracket.

 

Example

 

int _hello_func( mb_interpreter_t* s, void** l )

{

  // Parse Empty Parameters

  BEGIN_PARSE( s, l )

  END_PARSE

 

  // Create output String

  COPY_STRING( pHello, "HELLO" );

 

  // Return the string "HELLO"

  RETURN_STRING( pHello );

}