ファイルの行数をカウントする。
Count the number of lines of a file.
◆形式(Format)
#include <file.h>
inline int countline(const char ∗filename)
◆引数(Arguments)
filename
行数をカウントしたいファイル名。
Name of the file to count the number of lines.
◆戻り値(Return value)
ファイルfilenameの行数。
「\n」の個数として数えるので最終行に改行文字が無い場合はカウントに含まれない。
The number of lines of the file filename.
This is counted as the number of “\n”,
meaning that the last line of the file is excluded from the count
if the line does not consist of the linebreak.