📄 my_malloc.h
字号:
# ifndef _MY_MALLOC_H_
# define _MY_MALLOC_H_
# include "stdio.h"
# include "stdlib.h"
# include "initial.h"
int *imalloc_1(int);
double *dmalloc_1(int);
double **dmalloc_2(int, int);
double ***dmalloc_3(int, int, int);
double ****dmalloc_4(int, int, int, int);
POINT *POINT_malloc(int);
POLYGON *POLYGON_malloc(int);
PORT *PORT_malloc(int);
LAYER *LAYER_malloc(int);
MODULE *MODULE_malloc(int);
# endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -