my_malloc.h
来自「FDTD 模拟 天线 包含 近场-远场 外推程序(时谐场)」· C头文件 代码 · 共 23 行
H
23 行
# 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 + =
减小字号Ctrl + -
显示快捷键?