mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
3336be8c94
new file: projects/github.com/neovim/unibilium/test.c
10 lines
207 B
C
10 lines
207 B
C
#include <unibilium.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
setvbuf(stdout, NULL, _IOLBF, 0);
|
|
unibi_term *ut = unibi_dummy();
|
|
unibi_destroy(ut);
|
|
printf("%s", unibi_terminfo_dirs);
|
|
return 0;
|
|
} |