]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
blkid: use get_terminal_width() from ttyutils.h
authorPetr Uzel <petr.uzel@suse.cz>
Tue, 15 May 2012 08:49:04 +0000 (10:49 +0200)
committerKarel Zak <kzak@redhat.com>
Tue, 15 May 2012 09:32:56 +0000 (11:32 +0200)
Signed-off-by: Petr Uzel <petr.uzel@suse.cz>
misc-utils/blkid.c

index 6a7991f8724497633fe4fbecdd39a0e9884b304a..aec3528b47dea815e8e6eacea9e5612169754665 100644 (file)
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
-#include <termios.h>
 #include <errno.h>
-#ifdef HAVE_SYS_IOCTL_H
-#include <sys/ioctl.h>
-#endif
 #ifdef HAVE_GETOPT_H
 #include <getopt.h>
 #else
@@ -45,6 +41,7 @@ extern int optind;
 #define STRTOXX_EXIT_CODE      4               /* strtoxx_or_err() */
 #include "strutils.h"
 #include "closestream.h"
+#include "ttyutils.h"
 
 const char *progname = "blkid";
 
@@ -124,30 +121,6 @@ static void safe_print(const char *cp, int len)
        }
 }
 
-static int get_terminal_width(void)
-{
-#ifdef TIOCGSIZE
-       struct ttysize  t_win;
-#endif
-#ifdef TIOCGWINSZ
-       struct winsize  w_win;
-#endif
-        const char     *cp;
-
-#ifdef TIOCGSIZE
-       if (ioctl (0, TIOCGSIZE, &t_win) == 0)
-               return (t_win.ts_cols);
-#endif
-#ifdef TIOCGWINSZ
-       if (ioctl (0, TIOCGWINSZ, &w_win) == 0)
-               return (w_win.ws_col);
-#endif
-        cp = getenv("COLUMNS");
-       if (cp)
-               return strtol(cp, NULL, 10);
-       return 80;
-}
-
 static int pretty_print_word(const char *str, int max_len,
                             int left_len, int overflow_nl)
 {