Ret()

From Recital Documentation Wiki
Jump to: navigation, search

PURPOSE

Return to Recital


SYNONYM

api_ret()


SYNOPSIS

#include "dbapi.h"
 
int	_ret()
 
<input parameters>
none
 
<output parameters>
none


DESCRIPTION

The _ret() function is used to Return to Recital without returning any value. This allows for the function to be used like a command.


EXAMPLE

The following example returns to Recital without returning any value.

Example Recital program:

exec_command("test")

Example 'C' function:

#include "dbapi.h"
 
dbapi_exec_command()
{
    ret();
}


SEE ALSO

_retc(), _retclen(), _retds(), _retl(), _retnd(), _retni(), _retnl(), _reto(), _retts(), _retys()