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 >
Wrap
C/C++ Source or Header
|
1991-11-27
|
881b
|
31 lines
#ifndef CLIB_ALIB_STDIO_PROTOS_H
#define CLIB_ALIB_STDIO_PROTOS_H
/*
** $Filename: clib/alib_stdio_protos.h $
** $Release: 2.04 Includes, V37.4 $
** $Revision: 37.1 $
** $Date: 91/11/04 $
**
** C prototypes. For use with 32 bit integers only.
**
** (C) Copyright 1990-1991 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
/* functions that duplicate those in a typical C library */
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 /* CLIB_ALIB_STDIO_PROTOS_H */