You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
997 B
44 lines
997 B
1 year ago
|
/*--------------------------------------------------------------------------
|
||
|
STDIO.H
|
||
|
|
||
|
Prototypes for standard I/O functions.
|
||
|
Copyright (c) 1988-2002 Keil Elektronik GmbH and Keil Software, Inc.
|
||
|
All rights reserved.
|
||
|
--------------------------------------------------------------------------*/
|
||
|
|
||
|
#ifndef __STDIO_H__
|
||
|
#define __STDIO_H__
|
||
|
|
||
|
#ifndef EOF
|
||
|
#define EOF -1
|
||
|
#endif
|
||
|
|
||
|
#ifndef NULL
|
||
|
#define NULL ((void *) 0)
|
||
|
#endif
|
||
|
|
||
|
#ifndef _SIZE_T
|
||
|
#define _SIZE_T
|
||
|
typedef unsigned int size_t;
|
||
|
#endif
|
||
|
|
||
|
#pragma SAVE
|
||
|
#pragma REGPARMS
|
||
|
extern char _getkey (void);
|
||
|
extern char getchar (void);
|
||
|
extern char ungetchar (char);
|
||
|
extern char putchar (char);
|
||
|
extern int printf (const char *, ...);
|
||
|
extern int sprintf (char *, const char *, ...);
|
||
|
extern int vprintf (const char *, char *);
|
||
|
extern int vsprintf (char *, const char *, char *);
|
||
|
extern char *gets (char *, int n);
|
||
|
extern int scanf (const char *, ...);
|
||
|
extern int sscanf (char *, const char *, ...);
|
||
|
extern int puts (const char *);
|
||
|
|
||
|
#pragma RESTORE
|
||
|
|
||
|
#endif
|
||
|
|