⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stdio.h

📁 pic系列单片机头文件源文件(c18 开发环境)
💻 H
字号:
#ifndef __STDIO_H
#define __STDIO_H

#include <stdarg.h>
#include <stddef.h>

/* Change this to near (or omit altogether) if building small memory model
 * versions of the libraries
 */
#define MEM_MODEL far

#define EOF ((int)-1)


typedef unsigned char FILE;

/* output destination handles */
#define _H_USER ((FILE*)((int)-1))
#define _H_USART ((FILE*)((int)-2))

extern FILE *stderr;
extern FILE *stdout;


int putc (auto char c, auto FILE *f);
int vsprintf (auto char *buf, auto const MEM_MODEL rom char *fmt, auto va_list ap);
int vprintf (auto const MEM_MODEL rom char *fmt, auto va_list ap);
int sprintf (auto char *buf, auto const MEM_MODEL rom char *fmt, ...);
int printf (auto const MEM_MODEL rom char *fmt, ...);
int fprintf (auto FILE *f, auto const MEM_MODEL rom char *fmt, ...);
int vfprintf (auto FILE *f, auto const MEM_MODEL rom char *fmt, auto va_list ap);
int puts (auto const MEM_MODEL rom char *s);
int fputs (auto const MEM_MODEL rom char *s, auto FILE *f);

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -