|
Document of c-modernization-kit (calc) 1.0.0
|
subtract 関数の実装ファイル。 More...
Go to the source code of this file.
Functions | |
| int | subtract (const int a, const int b, int *result) |
| 2 つの整数を減算します。 | |
subtract 関数の実装ファイル。
2 つの整数を減算する関数を提供します。
Definition in file subtract.c.
| int subtract | ( | const int | a, |
| const int | b, | ||
| int * | result ) |
2 つの整数を減算します。
| [in] | a | 第一オペランド。 |
| [in] | b | 第二オペランド。 |
| [out] | result | 計算結果を格納するポインタ。 |
この関数は 2 つの整数を受け取り、その差を result に格納します。
Definition at line 20 of file subtract.c.
References add().
Referenced by calcHandler(), and main().