fd_t open(const char *path)
System call for opening files.
uint64_t close(fd_t fd)
System call for closing files.
uint64_t vwritef(fd_t fd, const char *_RESTRICT format, va_list args)
Wrapper for writing a formatted string to a file with a va_list.
uint64_t vwritefilef(const char *path, const char *_RESTRICT format, va_list args)
Wrapper for writing a formatted string to a file directly using a path with a va_list.
#define ERR
Integer error value.
__UINT64_TYPE__ fd_t
A file descriptor.
__builtin_va_list va_list