source: trunk/libs/newlib/src/newlib/libc/stdio/fsetpos.c @ 577

Last change on this file since 577 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.4 KB
Line 
1/*
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley.  The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16 */
17
18/*
19FUNCTION
20<<fsetpos>>---restore position of a stream or file
21
22INDEX
23        fsetpos
24INDEX
25        _fsetpos_r
26
27SYNOPSIS
28        #include <stdio.h>
29        int fsetpos(FILE *<[fp]>, const fpos_t *<[pos]>);
30        int _fsetpos_r(struct _reent *<[ptr]>, FILE *<[fp]>,
31                       const fpos_t *<[pos]>);
32
33DESCRIPTION
34Objects of type <<FILE>> can have a ``position'' that records how much
35of the file your program has already read.  Many of the <<stdio>> functions
36depend on this position, and many change it as a side effect.
37
38You can use <<fsetpos>> to return the file identified by <[fp]> to a previous
39position <<*<[pos]>>> (after first recording it with <<fgetpos>>).
40
41See <<fseek>> for a similar facility.
42
43RETURNS
44<<fgetpos>> returns <<0>> when successful.  If <<fgetpos>> fails, the
45result is <<1>>.  The reason for failure is indicated in <<errno>>:
46either <<ESPIPE>> (the stream identified by <[fp]> doesn't support
47repositioning) or <<EINVAL>> (invalid file position).
48
49PORTABILITY
50ANSI C requires <<fsetpos>>, but does not specify the nature of
51<<*<[pos]>>> beyond identifying it as written by <<fgetpos>>.
52
53Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
54<<lseek>>, <<read>>, <<sbrk>>, <<write>>.
55*/
56
57#include <_ansi.h>
58#include <reent.h>
59#include <stdio.h>
60
61int
62_fsetpos_r (struct _reent * ptr,
63       FILE * iop,
64       const _fpos_t * pos)
65{
66  int x = _fseek_r (ptr, iop, *pos, SEEK_SET);
67
68  if (x != 0)
69    return 1;
70  return 0;
71}
72
73#ifndef _REENT_ONLY
74
75int
76fsetpos (FILE * iop,
77       const _fpos_t * pos)
78{
79  return _fsetpos_r (_REENT, iop, pos);
80}
81
82#endif /* !_REENT_ONLY */
Note: See TracBrowser for help on using the repository browser.