関数free2 マニュアル

(The documentation of function free2)

Last Update: 2022/10/7


◆機能・用途(Purpose)

2次元配列の動的メモリを解放する。
Release dynamic memories of a 2-D array.


◆形式(Format)

#include <mymemory.h>
inline void free2(void ∗∗∗data,const int N1)


◆引数(Arguments)

data 動的メモリを解放したい2次元配列のアドレス。
The address of a 2-D array for which the dynamic memory is to be released.
N1 dataの第1成分の配列要素数。
The number of array components of the 1st element of data.


◆使用例(Example)

double ∗∗data=calloc2D_double(10,20);
free2((void ∗∗∗)&data,10);