home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / BC_DICE2.DMS / in.adf / INCLUDE / clib / alib_stdio_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-10  |  736 b   |  29 lines

  1. #ifndef CLIB_ALIB_STDIO_PROTOS_H
  2. #define CLIB_ALIB_STDIO_PROTOS_H
  3. /*
  4. ** $VER: alib_stdio_protos.h 37.1 (04.11.91)
  5. ** Includes Release 38.56
  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. LONG printf( STRPTR fmt, ... );
  17. LONG sprintf( STRPTR buffer, STRPTR fmt, ... );
  18. LONG fclose( long stream );
  19. LONG fgetc( long stream );
  20. LONG fprintf( long stream, STRPTR fmt, ... );
  21. LONG fputc( long c, long stream );
  22. LONG fputs( UBYTE *s, long stream );
  23. LONG getchar( void );
  24. LONG putchar( long c );
  25. LONG puts( BYTE *s );
  26. ULONG FastRand( unsigned long seed );
  27. UWORD RangeRand( unsigned long maxValue );
  28. #endif 
  29.