Go to the first, previous, next, last section, table of contents.
#include <unistd.h> int lchown(const char *file, int owner, int group);
This function does nothing under MS-DOS.
This function always returns zero if the file exists (it does not
follow symbolic links), else it returns -1 and sets errno
to ENOENT
.
not ANSI, not POSIX
Go to the first, previous, next, last section, table of contents.