関数free3 マニュアル

(The documentation of function free3)

Last Update: 2022/10/7


◆機能・用途(Purpose)

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


◆形式(Format)

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


◆引数(Arguments)

data 動的メモリを解放したい3次元配列のアドレス。
The address of a 3-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”.
N2 dataの第2成分の配列要素数。
The number of array components of the 2nd element of “data”.


◆使用例(Example)

char ∗∗∗data=calloc3D_char(10,20,30);
free3((void ∗∗∗∗)&data,10,20);