home *** CD-ROM | disk | FTP | other *** search
- #ifndef CLIB_ALIB_STDIO_PROTOS_H
- #define CLIB_ALIB_STDIO_PROTOS_H
-
- /*
- ** $VER: alib_stdio_protos.h 40.1 (20.7.1996)
- ** Includes Release 44.1
- **
- ** C prototypes. For use with 32 bit integers only.
- **
- ** Copyright © 1999 Amiga, Inc.
- ** All Rights Reserved
- */
-
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- /* stdio functions that duplicate those in a typical C library */
-
- LONG printf( CONST STRPTR fmt, ... );
- LONG sprintf( CONST STRPTR buffer, CONST STRPTR fmt, ... );
- LONG fclose( LONG stream );
- LONG fgetc( LONG stream );
- LONG fprintf( LONG stream, CONST STRPTR fmt, ... );
- LONG fputc( LONG c, LONG stream );
- LONG fputs( CONST STRPTR s, LONG stream );
- LONG getchar( VOID );
- LONG putchar( ULONG c );
- LONG puts( CONST STRPTR s );
-
- #ifdef __cplusplus
- }
- #endif /* __cplusplus */
-
- #endif /* CLIB_ALIB_STDIO_PROTOS_H */
-