summaryrefslogtreecommitdiff
path: root/static/v10/man3/fseek.3
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/v10/man3/fseek.3
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/v10/man3/fseek.3')
-rw-r--r--static/v10/man3/fseek.351
1 files changed, 0 insertions, 51 deletions
diff --git a/static/v10/man3/fseek.3 b/static/v10/man3/fseek.3
deleted file mode 100644
index 02e0e125..00000000
--- a/static/v10/man3/fseek.3
+++ /dev/null
@@ -1,51 +0,0 @@
-.TH FSEEK 3S
-.CT 2 file_io
-.SH NAME
-fseek, ftell, rewind \(mi reposition a stream
-.SH SYNOPSIS
-.nf
-.B #include <stdio.h>
-.PP
-.B int fseek(stream, offset, ptrname)
-.B FILE *stream;
-.B long offset;
-.PP
-.B long ftell(stream)
-.B FILE *stream;
-.PP
-.B int rewind(stream)
-.fi
-.SH DESCRIPTION
-.I Fseek
-sets the position of the next input or output
-operation on the
-.IR stream .
-The new position is at the signed distance
-.I offset
-bytes
-from the beginning, the current position, or the end of the file,
-as
-.I ptrname
-has the value 0, 1 or 2 respectively.
-.PP
-.I Ftell
-returns the current value of the file pointer for the file
-associated with the named
-.IR stream .
-.PP
-.IR Rewind ( stream )
-is equivalent to
-.BR "fseek(stream, 0L, 0)" .
-.SH "SEE ALSO"
-.IR lseek (2),
-.IR stdio (3)
-.SH DIAGNOSTICS
-.I Fseek
-returns \-1
-for improper seeks.
-.SH BUGS
-The interaction of
-.I fseek
-and
-.IR ungetc (3)
-is undefined.