zkCreat - create a new file or rewrite an existing one
#include "
zkFcntl.h"
int zkCreat(const char* path, mode_t mode);
The function call:
zkCreat(path, mode)
is equivalent to:
zkOpen(path, O_WRONLY|O_CREAT|O_TRUNC, mode)
Refer to zkOpen().
Refer to zkOpen().
Derived from Issue 1 of the SVID.