home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdio / fputc.txh < prev    next >
Encoding:
Text File  |  1995-07-10  |  378 b   |  24 lines

  1. @node fputc, stdio
  2. @subheading Syntax
  3.  
  4. @example
  5. #include <stdio.h>
  6.  
  7. int fputc(int character, FILE *file);
  8. @end example
  9.  
  10. @subheading Description
  11.  
  12. This function writes the given @var{character} to the given @code{file}.
  13.  
  14. @subheading Return Value
  15.  
  16. The given character [0..255] or @code{EOF}.
  17.  
  18. @subheading Example
  19.  
  20. @example
  21. fputc('\n', stdout);
  22. @end example
  23.  
  24.