home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
cpm
/
utils
/
asmutl
/
smmaclnk.ark
/
FILE.C
< prev
next >
Wrap
Text File
|
1987-09-10
|
256b
|
13 lines
/*
** file related functions
*/
#define NOCCARGC
open(name, mode) char *name, *mode; {
int fd;
if(fd = fopen(name, mode)) return(fd);
cant(name);
}
close(fd) int fd; {
if(fclose(fd)) error("Close Error");
}
if(fd = fopen(name, mod