📄 stdlib.inc
字号:
#ifndef _INCLUDE_FILE_STDLIB_INC_
_INCLUDE_FILE_STDLIB_INC_ equ
include stddef.inc
_abs proto cdecl n:dword
_labs proto cdecl n:dword
_abort proto cdecl
_atoi proto cdecl string:dword
_atol proto cdecl string:dword
_atof proto cdecl string:dword
_exit proto cdecl status:dword
_itoa proto cdecl value:dword,string:dword,radix:dword
_ltoa proto cdecl value:dword,string:dword,radix:dword
_malloc proto cdecl size:size_t
_free proto cdecl memblock:dword
_strtol proto cdecl nptr:dword,endptr:dword,base:dword
_strtoul proto cdecl nptr:dword,endptr:dword,base:dword
_strtod proto cdecl nptr:dword,endptr:dword
_strtof proto cdecl nptr:dword,endptr:dword
_strtold proto cdecl nptr:dword,endptr:dword
_srand proto cdecl seed:dword
_rand proto cdecl
_realloc proto cdecl memblock:dword,size:size_t
_getenv proto cdecl varname:dword
_bsearch proto cdecl key:dword,base:dword,num:dword,width:dword,compare:dword
_calloc proto cdecl num:size_t,size:size_t
_system proto cdecl command:dword
_qsort proto cdecl base:dword,num:dword,width:dword,compare:dword
abs equ _abs
labs equ _labs
abort equ _abort
atoi equ _atoi
atol equ _atol
atof equ _atof
exit equ _exit
itoa equ _itoa
ltoa equ _ltoa
malloc equ _malloc
free equ _free
strtol equ _strtol
strtoul equ _strtoul
strtod equ _strtod
strtof equ _strtof
strtold equ _strtold
srand equ _srand
rand equ _rand
realloc equ _realloc
getenv equ _getenv
bsearch equ _bsearch
calloc equ _calloc
system equ _system
qsort equ _qsort
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -