我一直在努力让标签完成工作。我很困惑,不知道该怎么做。请您看一下我的代码并告诉我如何修复它。
顺便说一下,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;
}