51f0ec8415
new chunk. The partition editor now works as well as the underlying libdisk can support it - have at it, Poul!
16 lines
188 B
C
16 lines
188 B
C
#include <stdio.h>
|
|
#include <termcap.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
char buf[4096];
|
|
int i;
|
|
|
|
if (argc < 2)
|
|
return 1;
|
|
i = tgetent(buf, argv[1]);
|
|
printf("%s",buf);
|
|
return 0;
|
|
}
|