geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
654 B

  1. .TH libssh2_sftp_tell 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
  2. .SH NAME
  3. libssh2_sftp_tell - get the current read/write position indicator for a file
  4. .SH SYNOPSIS
  5. #include <libssh2.h>
  6. #include <libssh2_sftp.h>
  7. size_t
  8. libssh2_sftp_tell(LIBSSH2_SFTP_HANDLE *handle);
  9. .SH DESCRIPTION
  10. \fIhandle\fP - SFTP File Handle as returned by \fBlibssh2_sftp_open_ex(3)\fP.
  11. Returns the current offset of the file handle's internal pointer. Note that
  12. this is now deprecated. Use the newer \fBlibssh2_sftp_tell64(3)\fP instead!
  13. .SH RETURN VALUE
  14. Current offset from beginning of file in bytes.
  15. .SH SEE ALSO
  16. .BR libssh2_sftp_open_ex(3),
  17. .BR libssh2_sftp_tell64(3)