📄 stdlib.h
字号:
/* *----------------------------------------------------------------------------- * Copyright (c) KEIL ELEKTRONIK GmbH and Franklin Software, Inc., 1987-1992 *----------------------------------------------------------------------------- *//* STDLIB.H: standard functions V3.20 */#ifndef NULL #define NULL ((void *) 0L)#endif#pragma SAVE#pragma REGPARMSextern float atof (void *s1);extern long atol (void *s1);extern int atoi (void *s1);extern int rand ();extern void srand (int);extern void *malloc (unsigned int size);extern void free (void xdata *p);extern void init_mempool (void xdata *p, unsigned int size);extern void *realloc (void xdata *p, unsigned int size);extern void *calloc (unsigned int size, unsigned int len);#pragma RESTORE
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -