summaryrefslogtreecommitdiff
path: root/pager.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2012-02-12 14:16:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-02-15 00:16:19 (GMT)
commitec7ff5ba272b565ed093a98dc13dd5cd26aeac92 (patch)
tree9039325114378101cc6f922337a9ab33e3adb3bf /pager.c
parent58d4203aa617293d1dc3746a1ea33d84eb766e0f (diff)
downloadgit-ec7ff5ba272b565ed093a98dc13dd5cd26aeac92.zip
git-ec7ff5ba272b565ed093a98dc13dd5cd26aeac92.tar.gz
git-ec7ff5ba272b565ed093a98dc13dd5cd26aeac92.tar.bz2
make lineno_width() from blame reusable for others
builtin/blame.c has a helper function to compute how many columns we need to show a line-number, whose implementation is reusable as a more generic helper function to count the number of columns necessary to show any cardinal number. Rename it to decimal_width(), move it to pager.c and export it for use by future callers. Signed-off-by: Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pager.c')
-rw-r--r--pager.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/pager.c b/pager.c
index 975955b..96c07ba 100644
--- a/pager.c
+++ b/pager.c
@@ -110,3 +110,15 @@ int pager_in_use(void)
env = getenv("GIT_PAGER_IN_USE");
return env ? git_config_bool("GIT_PAGER_IN_USE", env) : 0;
}
+
+/*
+ * How many columns do we need to show this number in decimal?
+ */
+int decimal_width(int number)
+{
+ int i, width;
+
+ for (width = 1, i = 10; i <= number; width++)
+ i *= 10;
+ return width;
+}