]> git.sur5r.net Git - i3/i3status/commitdiff
Cleanup disk "module"
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 11 Oct 2009 22:53:47 +0000 (00:53 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 11 Oct 2009 22:53:47 +0000 (00:53 +0200)
src/print_disk_info.c

index 84524c3995c6c8379bd393da7bff0c3d9e327a87..7ad27a477c5d3f791c1fd1c5e272e5c01c30ac25 100644 (file)
 #define MEGABYTE (1024ULL * 1024)
 #define KILOBYTE (1024ULL)
 
-void print_bytes_human(uint64_t bytes) {
-        /* 1 TB */
+/*
+ * Prints the given amount of bytes in a human readable manner.
+ *
+ */
+static void print_bytes_human(uint64_t bytes) {
         if (bytes > TERABYTE)
                 printf("%f TB", (double)bytes / TERABYTE);
         else if (bytes > GIGABYTE)
@@ -27,13 +30,11 @@ void print_bytes_human(uint64_t bytes) {
         else {
                 printf("%.01f B", (double)bytes);
         }
-
 }
 
 /*
- * Just parses /proc/net/wireless looking for lines beginning with
- * wlan_interface, extracting the quality of the link and adding the
- * current IP address of wlan_interface.
+ * Does a statvfs and prints either free, used or total amounts of bytes in a
+ * human readable manner.
  *
  */
 void print_disk_info(const char *path, const char *format) {