This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/write.c

33 lines
792 B
C

#include <stdio.h>
#include <io.h>
#include <fcntl.h>
char buffer[]
= { "A text record to be written" };
void main()
{
int handle;
int size_written;
/* open a file for output */
/* replace existing file if it exists */
handle = open( "file",
O_WRONLY | O_CREAT | O_TRUNC | O_TEXT,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP );
if( handle != -1 ) {
/* write the text */
size_written = write( handle, buffer,
sizeof( buffer ) );
/* test for error */
if( size_written != sizeof( buffer ) ) {
printf( "Error writing file\n" );
}
/* close the file */
close( handle );
}
}