|
Document of c-modernization-kit (calc) 1.0.0
|
計算ライブラリの定数ファイル。 More...
Go to the source code of this file.
Macros | |
| #define | CALC_SUCCESS 0 |
| 成功の戻り値を表す定数。 | |
| #define | CALC_ERROR -1 |
| 失敗の戻り値を表す定数。 | |
| #define | CALC_KIND_ADD 1 |
| 加算の演算種別を表す定数。 | |
| #define | CALC_KIND_SUBTRACT 2 |
| 減算の演算種別を表す定数。 | |
| #define | CALC_KIND_MULTIPLY 3 |
| 乗算の演算種別を表す定数。 | |
| #define | CALC_KIND_DIVIDE 4 |
| 除算の演算種別を表す定数。 | |
計算ライブラリの定数ファイル。
Definition in file libcalc_const.h.
| #define CALC_SUCCESS 0 |
成功の戻り値を表す定数。
Definition at line 17 of file libcalc_const.h.
Referenced by add(), divide(), and multiply().
| #define CALC_ERROR -1 |
失敗の戻り値を表す定数。
Definition at line 18 of file libcalc_const.h.
Referenced by add(), calcHandler(), divide(), and multiply().
| #define CALC_KIND_ADD 1 |
加算の演算種別を表す定数。
Definition at line 20 of file libcalc_const.h.
Referenced by calcHandler(), and main().
| #define CALC_KIND_SUBTRACT 2 |
減算の演算種別を表す定数。
Definition at line 21 of file libcalc_const.h.
Referenced by calcHandler(), and main().
| #define CALC_KIND_MULTIPLY 3 |
乗算の演算種別を表す定数。
Definition at line 22 of file libcalc_const.h.
Referenced by calcHandler(), and main().
| #define CALC_KIND_DIVIDE 4 |
除算の演算種別を表す定数。
Definition at line 23 of file libcalc_const.h.
Referenced by calcHandler(), and main().