stdio.h
来自「ADS下的bios工程」· C头文件 代码 · 共 26 行
H
26 行
#ifndef _BIOS_STDIO_H#define _BIOS_STDIO_H/* This file was located at /usr/local/arm-linux/arm-linux/sys-include directory */#include <stdarg.h>#ifndef NULL#define NULL ((void *)0)#endif#define BS 0x08 /* back space */#define CR 0x0D /* carriage return */#define ESC 0x1B /* escape */#define SPACE 0x20 /* space */#define NL 0x0 /* null */int gets(char *s);int printf(const char *fmt, ...);int sprintf(char *buf, const char *fmt, ...);int vsprintf(char *buf, const char *fmt, va_list args);int getc(void);int getc_timed(int cs);int putc(char buffer);#endif /* _BIOS_STDIO_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?