Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C/C++ v10.0 : C library - <b>synopsis:</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Synopsis:
    #include <io.h>
    int unlink( const char *path );

Description:
    The unlink function deletes the file whose name is the string pointed to
    by path.  This function is equivalent to the  remove function.

Returns:
    The unlink function returns zero if the operation succeeds, non-zero if
    it fails.

See Also:
    chdir, chmod, close, getcwd, mkdir, open, remove, rename, rmdir, stat

Example:
    #include <io.h>

    void main()
      {
        unlink( "vm.tmp" );
      }

Classification:
    POSIX 1003.1

Systems:
    All

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson