Plan 9 from Bell Labs’s /usr/web/sources/contrib/nemo/sys/src/libb/writef.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <u.h>
#include <libc.h>
#include <b.h>

long		
writef(char* f, void* buf, long len)
{
	int	fd;
	long	r;

	// BUG: retry it all if we get io errors while writing.

	fd = open(f, OWRITE|OTRUNC);
	if (fd < 0)
		return -1;
	if (len > 0)
		r = write(fd, buf, len);
	else
		r = 0;
	close(fd);
	return r;

}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to [email protected].