OILS
/
build
/ detect-readline-completion-display-matches-hook.c
View on Github
|
oils.pub
10 lines, 6 significant
1
#include
<stdio.h>
2
#include
<readline/readline.h>
3
4
void test_hook(char** matches, int num_matches, int max_length)
{
5
return 0;
6
}
7
8
int main(void)
{
9
rl_completion_display_matches_hook = test_hook;
10
}