Go to the previous, next section.

symlink

SYNOPSIS

int symlink(const char *src, const char *dest);

PARAMETERS

src: [in] the new link.

dest: [in] the file to point to.

DESCRIPTION

Creates a symlink form src to dest. The destination does not need to exist at the time of the creation of the link.

RETURN VALUE

On success, returns zero. On error, returns -1 and sets errno to one of the following value:

Go to the previous, next section.