diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2004-03-20 08:38:27 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2004-03-20 08:38:27 +0000 |
| commit | 1e709c9cb51efb0266586902108cb8c74fae00e1 (patch) | |
| tree | 2deb085f24b965bfb6498537e189e40f2330b977 | |
| parent | 8737555800acedb675f10e8940ae714ffd103878 (diff) | |
Notes
| -rw-r--r-- | lib/libc/stdio/fseek.3 | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/lib/libc/stdio/fseek.3 b/lib/libc/stdio/fseek.3 index 41493beb7b40..96abc0ac83cc 100644 --- a/lib/libc/stdio/fseek.3 +++ b/lib/libc/stdio/fseek.3 @@ -36,7 +36,7 @@ .\" @(#)fseek.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd October 12, 2002 +.Dd March 19, 2004 .Dt FSEEK 3 .Os .Sh NAME @@ -149,21 +149,29 @@ The and .Fn fsetpos functions -are alternate interfaces equivalent to +are alternate interfaces for retrieving and setting the current position in +the file, similar to .Fn ftell and -.Fn fseek -(with whence set to -.Dv SEEK_SET ) , -setting and storing the current value of -the file offset into or from the object referenced by +.Fn fseek , +except that the current position is stored in an opaque object of +type +.Vt fpos_t +pointed to by .Fa pos . -On some -.Pq non- Ns Tn UNIX -systems an -.Dq Fa fpos_t -object may be a complex object -and these routines may be the only way to portably reposition a text stream. +These functions provide a portable way to seek to offsets larger than +those that can be represented by a +.Vt long int . +They may also store additional state information in the +.Vt fpos_t +object to facilitate seeking within files containing multibyte +characters with state-dependent encodings. +Although +.Vt fpos_t +has traditionally been an integral type, +applications cannot assume that it is; +in particular, they must not perform arithmetic on objects +of this type. .Pp If the stream is a wide character stream (see .Xr fwide 3 ) , |
