関数countstr マニュアル

(The documentation of function countstr)

Last Update: 2022/10/31


◆機能・用途(Purpose)

ファイル中の文字数をカウントする。
Count the number of characters in a file.


◆形式(Format)

#include <file.h>
inline int countstr(const char ∗filename)


◆引数(Arguments)

filename 文字数をカウントしたいファイル名。
Name of the file to count the number of characters.


◆戻り値(Return value)

ファイルfilename中の文字数(バイト数)。 改行文字(\n)などの特殊文字も1文字として扱い、 マルチバイト文字はバイト数でカウントする。
The number of characters (bytes) in the file filename. Special characters including breakline characters (\n) are included in the count. For multi-byte characters, the number of bytes is used for the count.


◆使用例(Example)

int N=countstr("file.txt");