_NAME_ setAppTerminatePermission _PROTOTYPE_ void setAppTerminatePermission(int permissionToTerminate); _SHORT-DESCRIPTION_ Set the value of the application termination permission variable. _DESCRIPTION_ setAppTerminatePermission sets the value of the application termination permission variable, which is used to check if the level1 library's routines are allowed to terminate a program from which they have been called. Some systems may wish to do some sort of clean-up operation before termination. The end-user can determine the value of this variable via the getAppTerminatePermission routine. The default is to allow termination because some routines may be dangerous to the archive when an error is encountered, but the routines are allowed to continue. _SHORT-CODE-SAMPLE_ setAppTerminatePermission(0); /* turn off program termination permission */ _INPUT_ * permissionToTerminate is a boolean value, and should be set to either 0 (false, no termination permission) or 1 (true, level1 routines may terminate the program from which they have been called.) _OUTPUT_ None.