home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / cbm / nduk-v37.lha / V37 / include / clib / alib_stdio_protos.h < prev    next >
C/C++ Source or Header  |  1991-11-27  |  881b  |  31 lines

  1. #ifndef  CLIB_ALIB_STDIO_PROTOS_H
  2. #define  CLIB_ALIB_STDIO_PROTOS_H
  3. /*
  4. **    $Filename: clib/alib_stdio_protos.h $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 37.1 $
  7. **    $Date: 91/11/04 $
  8. **
  9. **    C prototypes. For use with 32 bit integers only.
  10. **
  11. **    (C) Copyright 1990-1991 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. /* functions that duplicate those in a typical C library */
  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. ULONG FastRand( unsigned long seed );
  29. UWORD RangeRand( unsigned long maxValue );
  30. #endif     /* CLIB_ALIB_STDIO_PROTOS_H */
  31.