libssh2_sftp_readlink.3 (739B)
1.TH libssh2_sftp_readlink 3 "20 Feb 2010" "libssh2 1.2.4" "libssh2" 2.SH NAME 3libssh2_sftp_readlink - convenience macro for \fIlibssh2_sftp_symlink_ex(3)\fP 4.SH SYNOPSIS 5.nf 6#include <libssh2.h> 7#include <libssh2_sftp.h> 8 9#define libssh2_sftp_readlink(sftp, path, target, maxlen) \\ 10 libssh2_sftp_symlink_ex((sftp), (path), strlen(path), \\ 11 (target), (maxlen), \\ 12 LIBSSH2_SFTP_READLINK) 13.fi 14.SH DESCRIPTION 15This is a macro defined in a public libssh2 header file that is using the 16underlying function \fIlibssh2_sftp_symlink_ex(3)\fP. 17.SH RETURN VALUE 18See \fIlibssh2_sftp_symlink_ex(3)\fP 19.SH ERRORS 20See \fIlibssh2_sftp_symlink_ex(3)\fP 21.SH SEE ALSO 22.BR libssh2_sftp_symlink_ex(3)