Files
Digital-Research-Source-Code/CPM OPERATING SYSTEMS/CPM 68K/1.2 SOURCE/4/OPEN.C
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

38 lines
1.4 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/****************************************************************************
*
* C F I L E O P E N R O U T I N E
* -------------------------------------
*
* The "open" routine opens a "C" file and returns a file id.
*
* Calling Sequence:
*
* fid = open(fname,mode,type);
*
* Where:
*
* fname is the address of a null terminated file name.
* mode is the open mode:
*
* 0 => READ access only
* 1 => WRITE access only
* 2 => Both READ and WRITE
* type is 0 for ASCII files, 1 for BINARY
*
*
*****************************************************************************/
#include <portab.h> /* */
WORD xopen(fname,mode,xtype) /****************************/
BYTE *fname; /* -> File name */
WORD mode; /* Open mode */
WORD xtype; /* File type */
{ /****************************/
return(_open(fname,mode,xtype)); /* Call clib routine */
} /****************************/
e,xtype)); /* Call clib routine */
} /****************************/
e,xtype)); /* Call clib routine */
} /****************************/
e,xtype)); /* Call clib routine */
} /****************************/