stdlib.h
来自「用UCOS系统实现的MIPS平台源码」· C头文件 代码 · 共 28 行
H
28 行
/**************************************************************************
* *
* PROJECT : TMON (Transparent monitor) *
* *
* MODULE : STDLIB.h *
* *
* AUTHOR : Michael Anburaj *
* URL : http://geocities.com/michaelanburaj/ *
* EMAIL: michaelanburaj@hotmail.com *
* *
* PROCESSOR : MIPS 4Kc (32 bit RISC) - ATLAS board *
* *
* Tool-chain : SDE & Cygnus *
* *
* DESCRIPTION : *
* This is a std header file. *
* *
**************************************************************************/
#ifndef __STDLIB_H__
#define __STDLIB_H__
void qsort( char *base, int n, int size, int (*compar)() );
int atoi(char *s);
#endif /* __STDLIB_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?