noun
function prototype
In programming, a declaration of a function that specifies its name, return type, and parameters without the body. Used in languages like C and C++.
C言語では、関数原型をヘッダーファイルに書くことが多い。
In C, function prototypes are often written in header files.
コンパイラは関数原
The compiler uses function prototypes to check type consistency.