mb_print

Previous  Next

 

status_t mb_print( mb_interpreter_t* s, char* lpszString )

 


 

Gets the current print handler and outputs the supplied string.

 

Example

 

char line[256];

 

// Make sure OPTION FORMAT is ON

mb_set_option_flags( bas, mb_get_option_flags( bas ) | _OF_FORMAT );

 

// Replace Escape Sequences

mb_print_format( bas, "Hello World !\n", line );

 

// Output Line

mb_print( bas, line );