libssh2_sftp_symlink.3 685 B

12345678910111213141516171819
  1. .TH libssh2_sftp_symlink 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2 manual"
  2. .SH NAME
  3. libssh2_sftp_symlink - convenience macro for \fIlibssh2_sftp_symlink_ex(3)\fP
  4. .SH SYNOPSIS
  5. .nf
  6. #include <libssh2.h>
  7. #define libssh2_sftp_symlink(sftp, orig, linkpath) \\
  8. libssh2_sftp_symlink_ex((sftp), (orig), strlen(orig), (linkpath), \\
  9. strlen(linkpath), LIBSSH2_SFTP_SYMLINK)
  10. .SH DESCRIPTION
  11. This is a macro defined in a public libssh2 header file that is using the
  12. underlying function \fIlibssh2_sftp_symlink_ex(3)\fP.
  13. .SH RETURN VALUE
  14. See \fIlibssh2_sftp_symlink_ex(3)\fP
  15. .SH ERRORS
  16. See \fIlibssh2_sftp_symlink_ex(3)\fP
  17. .SH SEE ALSO
  18. .BR libssh2_sftp_symlink_ex(3)