cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

libssh2_sftp_tell.3 (653B)


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