OILS
/
build
/ detect-readline-list-funmap-names.c
View on Github
|
oils.pub
9 lines, 6 significant
1
#include
<stdio.h>
2
#include
<readline/readline.h>
3
#include
<readline/history.h>
4
5
int main(void)
{
6
rl_list_funmap_names();
7
8
return 0;
9
}