GnuCOBOL  2.0
A free COBOL compiler
isaudit.c File Reference
#include "isinternal.h"
Include dependency graph for isaudit.c:

Go to the source code of this file.

Functions

int isaudit (const int ihandle, char *pcfilename, int imode)
 

Function Documentation

int isaudit ( const int  ihandle,
char *  pcfilename,
int  imode 
)

Definition at line 23 of file isaudit.c.

References iserrno, and ivbmaxusedhandle.

24 {
25  /* BUG - Write isaudit */
26  if (ihandle < 0 || ihandle > ivbmaxusedhandle) {
27  iserrno = EBADARG;
28  return -1;
29  }
30  return 0;
31 }
int ivbmaxusedhandle
Definition: vblocking.c:26
int iserrno
Definition: vbmemio.c:27