summaryrefslogtreecommitdiffstats
path: root/src/pacman/util.h
diff options
context:
space:
mode:
authorJakob Gruber <jakob.gruber@gmail.com>2011-02-19 23:23:42 +0100
committerDan McGee <dan@archlinux.org>2011-04-21 00:41:13 +0200
commit0152266dd3ce0393f5e9519aaa1d7da7e6051694 (patch)
treed5232041a10b2e9446cfbdcff2d57c9b6175bbb0 /src/pacman/util.h
parent50de7019c0bbd917b0a1717566ddad41c7c6db9e (diff)
downloadpacman-0152266dd3ce0393f5e9519aaa1d7da7e6051694.tar.gz
pacman-0152266dd3ce0393f5e9519aaa1d7da7e6051694.tar.xz
Table formatted output functions
table_display takes a list of lists of strings (representing the table cells) and displays them formatted as a table. The exact format depends on the longest string in each column. Signed-off-by: Jakob Gruber <jakob.gruber@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman/util.h')
-rw-r--r--src/pacman/util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pacman/util.h b/src/pacman/util.h
index 6a20ba4f..d8ae7d80 100644
--- a/src/pacman/util.h
+++ b/src/pacman/util.h
@@ -53,6 +53,7 @@ char *strreplace(const char *str, const char *needle, const char *replace);
alpm_list_t *strsplit(const char *str, const char splitchar);
void string_display(const char *title, const char *string);
double humanize_size(off_t bytes, const char target_unit, int long_labels, const char **label);
+int table_display(const char *title, const alpm_list_t *header, const alpm_list_t *rows);
void list_display(const char *title, const alpm_list_t *list);
void list_display_linebreak(const char *title, const alpm_list_t *list);
void display_targets(const alpm_list_t *pkgs, int install);