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

📄 stdlib.h

📁 一个mips虚拟机非常好代码,使用C++来编写的,希望大家多学学,
💻 H
字号:
#ifndef stdlib_h_included#define stdlib_h_included#include "stdarg.h"int  putchar(int c);int  puts(const char* str);int  bcmp(const void* s1, const void* s2, int n);void bcopy(const void* str, void* dst, int n);int  isspace(int c);unsigned long strlen(const char* str);void abort(void);void printf(const char* templ, ...);void vprintf(const char* templ, va_list ap);#endif /* stdlib_h_included */

⌨️ 快捷键说明

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