home *** CD-ROM | disk | FTP | other *** search
- main() /* creat.c -- illustrates use of creat() */
- {char name[20], nameout[20];
- char buf[1];
- int fin, fout;
-
- printf("input name please: ");
- gets(name);
- if ((fin = open(name,0)) == -1)
- { printf("No such file: %s\n",name);
- exit();
- }
- printf("Output name please: ");
- gets (nameout);
- if ((fout = creat(nameout, 1)) == -1)
- exit();
- while(read(fin, buf, 1) >= 0)
- { if (buf[0] == 26) {
- close(fin);
- close(fout);
- break;
- }
- putchar(buf[0]);
- write(fout,buf,1);
- }
- close(fin); close(fout);
- }
-