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