pantry/projects/gnu.org/readline/fixture.c
Max Howell 2593cefed7
mk ncurses install its headers namespaced and not (#536)
* mk ncurses install its headers namespaced and not
* adds test for readline
2023-03-10 10:51:03 -05:00

8 lines
136 B
C

#include <stdio.h>
#include <stdlib.h>
#include <readline/readline.h>
int main() {
printf("%s\\n", readline("test> "));
return 0;
}