*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->IRIX man pages -> ftn/getc (3)              
Title
Content
Arch
Section
 

Contents


GETC(3F)							      GETC(3F)


NAME    [Toc]    [Back]

     getc, fgetc - get a character from	a logical unit

SYNOPSIS    [Toc]    [Back]

     integer function getc (char)
     character char

     integer function fgetc (lunit, char)
     character char

DESCRIPTION    [Toc]    [Back]

     These routines return the next character from a file associated with a
     fortran logical unit, bypassing normal fortran I/O.  Getc reads from
     logical unit 5, normally connected	to the control terminal	input.

     The value of each function	is a system status code. Zero indicates	no
     error occurred on the read; -1 indicates end of file was detected.	 A
     positive value will be either a UNIX system error code or an f77 I/O
     error code. See perror(3F).

BUGS    [Toc]    [Back]

     fgetc(3f) does not	work for FORTRAN unit numbers other than 5.

FILES    [Toc]    [Back]

     /usr/lib/libU77.a

SEE ALSO    [Toc]    [Back]

      
      
     getc(3S), intro(2), perror(3F)



























									Page 1






GETC(3S)							      GETC(3S)


NAME    [Toc]    [Back]

     getc, getchar, fgetc, getw, getc_unlocked,	getchar_unlocked - get
     character or word from a stream

SYNOPSIS    [Toc]    [Back]

     #include <stdio.h>

     int getc (FILE *stream);

     int getchar (void);

     int fgetc (FILE *stream);

     int getw (FILE *stream);

     int getc_unlocked (FILE *stream);

     int getchar_unlocked (void);

DESCRIPTION    [Toc]    [Back]

     Fgetc and getc return the next character (if it exists) from the named
     input stream, as an unsigned character converted to an integer.  It also
     moves the file pointer, if	defined, ahead one character in	stream.
     getchar is	defined	as getc(stdin).	 Each of getc,getchar and fgetc	exist
     as	functions in the C library. Getc and getchar are also available	as
     macros in <stdio.h> (see below under CAVEATS for important	details	on the
     implementation of these macros.)

     Getw returns the next word	(i.e., integer)	from the named input stream.
     Getw increments the associated file pointer, if defined, to point to the
     next integer-sized	word.  Getw assumes no special alignment in the	file.

     The getc_unlocked and getchar_unlocked functions are equivalent to	the
     getc and getchar functions, respectively.	However, these functions are
     not thread-safe and thus must only	be called under	the protection of the
     flockfile (or ftrylockfile) and funlockfile functions.

SEE ALSO    [Toc]    [Back]

      
      
     fclose(3S), ferror(3S), fopen(3S),	fread(3S), gets(3S), putc(3S),
     scanf(3S),	stdio(3S), ungetc(3S).

DIAGNOSTICS    [Toc]    [Back]

     These functions return the	constant EOF at	end-of-file or upon an error.
     Because EOF is a valid integer, it	is not sufficient to detect getw
     errors.  ferror(3S) must be used as well.

WARNING    [Toc]    [Back]

     If	the integer value returned by getc, getchar, or	fgetc is stored	into a
     character variable	and then compared against the integer constant EOF,
     the comparison may	never succeed, because sign-extension of a character
     on	widening to integer is machine-dependent.




									Page 1






GETC(3S)							      GETC(3S)


CAVEATS    [Toc]    [Back]

     When using	the macro versions of getc and getchar,	the stream argument
     may be evaluated more than	once.  Thus, it	must not be an expression with
     side-effects.  In particular, getc(*f++) does not work sensibly.  In
     these situations, the macro must either be	#undef'd, or fgetc should be
     used instead.

     Because of	possible differences in	word length and	byte ordering, files
     written using putw	are machine-dependent, and may not be read using getw
     on	a different processor.

BUGS    [Toc]    [Back]

     When using	the macros for getc and	getchar, hidden	external names may be
     referenced. Although these	names are prefixed with	an underscore, they
     may conflict with names which the ANSI C Standard reserves	for the	user
     when appearing in a local context.	 It is thus recommended	that users of
     these macros reserve all names which begin	with an	underscore for the
     implementation, and avoid defining	such names, even in a local context.


									PPPPaaaaggggeeee 2222
[ Back ]
 Similar pages
Name OS Title
putc IRIX write a character to a fortran logical unit
setbuf IRIX assign buffering to a stream logical unit FORTRAN SYNOPSIS #include character *(BUFSIZ+8) buf intege
fseek IRIX reposition a file on a logical unit
maplun IRIX returns the integer file descriptor for a Fortran logical unit number
DXmCSTextGetLastPosition Tru64 Retrieves (returns) the logical position of the last character in the text.
DXmCSTextSetTopPosition Tru64 Sets the logical position of the first character in the displayed text.
DXmCSTextGetTopPosition Tru64 Retrieves (returns) the logical position of the first character in the displayed text.
lvsplit HP-UX split mirrored LVM logical volume into two logical volumes
XmConvertUnits HP-UX A function that converts a value in one unit type to another unit type
XmConvertUnits IRIX A function that converts a value in one unit type to another unit type
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service