タブ補完を機能させようとしています..私は非常に混乱しており、何をすべきかわかりません。私のコードを見て、どうすれば修正できるか教えてください。
ちなみにrl_attempted_completion_function
オンラインチュートリアルで入手したので使っていますが、C++の関数です。変更せずに置き換えるには、どの関数を使用できますか。
ありがとう
static char** completion( const char * text , int start, int end){
char **matches;
matches = (char **)NULL;
if (start == 0)
matches = rl_completion_matches ((char*)text, &generator);
return (matches);
}
char* generator(const char* text, int state) {
int index, len;
char *comm;
if (!state) {
index = 0;
len = (int)strlen (text);
}
while ( (*comm = newEnv[index])) {
index++;
if (strncmp (comm, text, len) == 0)
return ((comm));
}
return NULL;
}
int main (int argc, char * argv[]) {
using_history();
rl_readline_name = basename(argv[0]);
rl_attempted_completion_function = completion;
while ( readline(">> ")!= NULL )
rl_bind_key('\t',rl_complete);
return 0;
}