modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / rewind
blob439658f5ea6f37a5f45405ee5d1f7c2633a9c43e
1 NAME
2     rewind - set position at the beginning of some or all files
4 SYNOPSIS
5     rewind([f_1, f_2, ...])
7 TYPES
8     f_1, f_2, ...       open file streams
10     return              null value or error
12 DESCRIPTION
13     With one or more arguments f_1, ..., this function sets the
14     position for each f_i at the beginning.  With no argument,
15     this operation is applied to all user-opened files.
17 EXAMPLE
18     ; f = fopen("curds","r");
19     ; x = fgetc(f);
20     ; rewind(f);
21     ; y = fgetc(f);
22     ; print x == y
23     1
25 LIMITS
26     The number of arguments is not to exceed 1024.
28 LINK LIBRARY
29     int rewindid(FILEID id);
31 SEE ALSO
32     errno, fclose, feof, ferror, fflush, fgetc, fgetline, fgets, files, fopen,
33     fprintf, fputc, fputs, fseek, fsize, ftell, isfile, printf, prompt
35 ## Copyright (C) 1999-2006  Landon Curt Noll
37 ## Calc is open software; you can redistribute it and/or modify it under
38 ## the terms of the version 2.1 of the GNU Lesser General Public License
39 ## as published by the Free Software Foundation.
41 ## Calc is distributed in the hope that it will be useful, but WITHOUT
42 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
43 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
44 ## Public License for more details.
46 ## A copy of version 2.1 of the GNU Lesser General Public License is
47 ## distributed with calc under the filename COPYING-LGPL.  You should have
48 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
49 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
51 ## @(#) $Revision: 30.1 $
52 ## @(#) $Id: rewind,v 30.1 2007/03/16 11:10:42 chongo Exp $
53 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/rewind,v $
55 ## Under source code control:   1996/04/30 03:05:18
56 ## File existed as early as:    1996
58 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
59 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/