mymemory.h マニュアル

(The documentation of mymemory.h)

Last update: 2022/10/7


mymemory.hには 配列の動的メモリの確保と解放を行う関数が定義されている。 このヘッダファイル内で定義されている関数を以下に示す。 各関数の詳細は関数名をクリックしてリンク先を参照のこと。
Functions to allocate and release dynamic memories for arrays are defined in mymemory.h. Functions defined in this header file are listed below. For details of individual functions, click the links.

関数名
Function name
機能・用途
Purpose
calloc2D_char char型2次元配列の動的メモリを確保する。
Allocate dynamic memories for a 2-D array of char-type.
calloc2D_int int型2次元配列の動的メモリを確保する。
Allocate dynamic memories for a 2-D array of int-type.
calloc2D_double double型2次元配列の動的メモリを確保する。
Allocate dynamic memories for a 2-D array of double-type.
calloc3D_char char型3次元配列の動的メモリを確保する。
Allocate dynamic memories for a 3-D array of char-type.
free2 2次元配列の動的メモリを解放する。
Release dynamic memories for a 2-D array.
free3 3次元配列の動的メモリを解放する。
Release dynamic memories for a 3-D array.