diff options
author | fjoe <fjoe@FreeBSD.org> | 2011-11-24 20:34:50 +0000 |
---|---|---|
committer | fjoe <fjoe@FreeBSD.org> | 2011-11-24 20:34:50 +0000 |
commit | 8b2f6e43b61b29d526778920308bd1e923bca53b (patch) | |
tree | 692ab61aad5537d57997e18c5ac08bd894399838 /gnu/lib/libodialog/TESTS/tree.c | |
parent | 6ecd4a2bb26b95634ff18d310e228dedf6fcae50 (diff) | |
download | FreeBSD-src-8b2f6e43b61b29d526778920308bd1e923bca53b.zip FreeBSD-src-8b2f6e43b61b29d526778920308bd1e923bca53b.tar.gz |
libodialog: Remove no longer used library.
Diffstat (limited to 'gnu/lib/libodialog/TESTS/tree.c')
-rw-r--r-- | gnu/lib/libodialog/TESTS/tree.c | 111 |
1 files changed, 0 insertions, 111 deletions
diff --git a/gnu/lib/libodialog/TESTS/tree.c b/gnu/lib/libodialog/TESTS/tree.c deleted file mode 100644 index c69b52e..0000000 --- a/gnu/lib/libodialog/TESTS/tree.c +++ /dev/null @@ -1,111 +0,0 @@ -/* - * tree.c - * - * small test-driver for new dialog functionality - * - * Copyright (c) 1998, Anatoly A. Orehovsky - */ - -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - -#include <stdio.h> -#include <stdlib.h> -#include <dialog.h> - -unsigned char *names[] = { - "/", - "/dev", - "/dev/fd", - "/tmp", - "/usr", - "/var", - "/home", - "/stand", - "/stand/etc", - "/stand/en_US.ISO8859-1", - "/stand/info", - "/stand/info/bin", - "/stand/info/des", - "/stand/info/games", - "/stand/info/manpages", - "/stand/info/proflibs", - "/stand/info/dict", - "/stand/info/info", - "/stand/info/src", - "/etc", - "/etc/gnats", - "/etc/kerberosIV", - "/etc/mtree", - "/etc/namedb", - "/etc/ppp", - "/etc/uucp", - "/etc/sliphome", - "/proc", - "/lkm", - "/mnt", - "/root", - "/sbin", - "/bin", - 0 -}; - -unsigned char *names1[] = { - "a", - "a:b", - "a:b:c", - "a:d" -}; - -int -main(int argc, char **argv) -{ - int retval; - unsigned char *tresult; - char comstr[BUFSIZ]; - - init_dialog(); - do { - use_helpline("Press OK for listing directory"); - retval = dialog_tree(names, - sizeof(names)/sizeof(unsigned char *) - 1, - '/', - "tree dialog box example", - "Typical find -x / -type d output", - -1, -1, 15, - &tresult); - - if (retval) - break; - - use_helpline(NULL); - (void)snprintf(comstr, sizeof(comstr), - "ls -CF %s", tresult); - - retval = dialog_prgbox( - comstr, - comstr, 20, 60, TRUE, TRUE); - - dialog_clear(); - - retval = dialog_tree(names1, - sizeof(names1)/sizeof(unsigned char *), - ':', - "tree dialog box example", - "Other tree", - -1, -1, 5, - &tresult); - if (!retval) - { - dialog_clear(); - } - } while (!retval); - - dialog_update(); - - dialog_clear(); - - end_dialog(); - - exit(retval); -} |