#ifndef CLIB_ALIB_STDIO_PROTOS_H
#define CLIB_ALIB_STDIO_PROTOS_H
/*
** $VER: alib_stdio_protos.h 37.1 (04.11.91)
** Includes Release 38.56
**
** C prototypes. For use with 32 bit integers only.
**
** (C) Copyright 1990-1992 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif

LONG printf( STRPTR fmt, ... );
LONG sprintf( STRPTR buffer, STRPTR fmt, ... );
LONG fclose( long stream );
LONG fgetc( long stream );
LONG fprintf( long stream, STRPTR fmt, ... );
LONG fputc( long c, long stream );
LONG fputs( UBYTE *s, long stream );
LONG getchar( void );
LONG putchar( long c );
LONG puts( BYTE *s );
ULONG FastRand( unsigned long seed );
UWORD RangeRand( unsigned long maxValue );
#endif 
