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

📄 stdlib.h

📁 编译后直接运行的MP3播放器全部C语言源代码 一个包含FAT文件系统、系统引导 Boot、FLASH Driver等内容的
💻 H
字号:
/* * stdlib.h * * Definitions for common types, variables, and functions. */#ifndef _STDLIB_H_#ifdef __cplusplusextern "C" {#endif#define _STDLIB_H_#include "_ansi.h"#define __need_size_t#define __need_wchar_t#include <stddef.h>#ifndef NULL#define NULL 0#endif#define EXIT_FAILURE 1#define EXIT_SUCCESS 0_VOID	_EXFUN(qsort,(_PTR __base, size_t __nmemb, size_t __size, int(*_compar)(const _PTR, const _PTR)));void *malloc(size_t);void *calloc (size_t nmemb, size_t size);void free(void *);void *realloc(void *, size_t);void srand(unsigned int seed);int rand(void);#define abs(x) ((x)>0?(x):-(x))#ifdef __cplusplus}#endif#endif /* _STDLIB_H_ */

⌨️ 快捷键说明

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