mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
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;
|
||
|
}
|