1. ホーム
  2. ubuntu

error: 'strcmp' is not declared in this scope

2022-02-16 05:57:26
<パス

私の個人的なブログへようこそ。 zengzeyu.com

質問内容


FlexCRFsライブラリのコンパイルに問題があります。

error: 'strcmp' was not declared in this scope

その他類似の問題

 error: 'strcpy' was not declared in this scope
error: 'strlen' was not declared in this scope

#include <string.h>

解決方法


エラーが発生したソースファイルにヘッダーファイルを追加する feasel/Chunking/chunkingfeasel.cpp:188:37: error: 'strlen' was not declared in this scope for (int i = 0; i < strlen(buff); i++) { ^ .

chunkingfeasel.cpp

次に #include <string.h> ヘッダーファイルで #include <string.h> で終わりです。

以上です。