home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / clib / alib_stdio_protos.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  761b  |  29 lines

  1. #ifndef  CLIB_ALIB_STDIO_PROTOS_H
  2. #define  CLIB_ALIB_STDIO_PROTOS_H
  3. /*
  4. **    $VER: alib_stdio_protos.h 39.1 (25.08.92)
  5. **    Includes Release 39.108
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    (C) Copyright 1990-1992 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12. #ifndef  EXEC_TYPES_H
  13. #include <exec/types.h>
  14. #endif
  15.  
  16. /* stdio functions that duplicate those in a typical C library */
  17.  
  18. LONG printf( STRPTR fmt, ... );
  19. LONG sprintf( STRPTR buffer, STRPTR fmt, ... );
  20. LONG fclose( long stream );
  21. LONG fgetc( long stream );
  22. LONG fprintf( long stream, STRPTR fmt, ... );
  23. LONG fputc( long c, long stream );
  24. LONG fputs( UBYTE *s, long stream );
  25. LONG getchar( void );
  26. LONG putchar( long c );
  27. LONG puts( BYTE *s );
  28. #endif     /* CLIB_ALIB_STDIO_PROTOS_H */
  29.