[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
Function setVERIFY - set VERIFY flag
Syntax #include <ibm.h>
boolean setVERIFY(boolean verify_status);
Prototype in ibm.h
Remarks sets the state of the verify flag. The VERIFY
status flag can be set from DOS by VERIFY ON or
VERIFY OFF.
This function is a macro.
Return value returns TRUE if the verify flag is on, FALSE if the
flag is off.
Note the return value is based on the CURRENT setting.
If you set the verify flag, setVERIFY will return
what you set the flag to, not what the flag was set
to before.
See also isBREAKon(), isVERIFYon(), setBREAK()
Example #include <ibm.h>
main()
{
printf("VERIFY flag was ");
if (! setVERIFY(TRUE))
printf("not ");
printf("on\n");
}
See Also:
isVERIFYon()
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson