summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrkhsh <me@drkhsh.at>2022-10-27 23:18:30 +0200
committerRafael Marçalo <raroma09@gmail.com>2022-10-28 22:21:47 +0100
commit1af8f3cebe5048b0e263303bbbcef75ecd236c4a (patch)
tree5f67b13f79a81ea824f72e58c21158d2b56a730e
parent19b34fe6e86710347fbbe7c996eca3f6b0a3e56f (diff)
radical re-formatting 0/3: Alphabetic headers
Except stated otherwise in comment. Fixes coding style. Formatting commits suck, incoherent coding style sucks more. https://suckless.org/coding_style/
-rw-r--r--components/battery.c2
-rw-r--r--components/cpu.c4
-rw-r--r--components/datetime.c2
-rw-r--r--components/disk.c2
-rw-r--r--components/hostname.c2
-rw-r--r--components/ip.c4
-rw-r--r--components/kernel_release.c4
-rw-r--r--components/keyboard_indicators.c2
-rw-r--r--components/keymap.c2
-rw-r--r--components/load_avg.c2
-rw-r--r--components/netspeeds.c8
-rw-r--r--components/num_files.c2
-rw-r--r--components/ram.c2
-rw-r--r--components/run_command.c2
-rw-r--r--components/swap.c6
-rw-r--r--components/temperature.c2
-rw-r--r--components/uptime.c2
-rw-r--r--components/user.c2
-rw-r--r--components/volume.c4
-rw-r--r--components/wifi.c2
20 files changed, 29 insertions, 29 deletions
diff --git a/components/battery.c b/components/battery.c
index b7a2ec6..f0fe8bf 100644
--- a/components/battery.c
+++ b/components/battery.c
@@ -2,8 +2,8 @@
#include <stdio.h>
#include <string.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(__linux__)
#include <limits.h>
diff --git a/components/cpu.c b/components/cpu.c
index 254f047..a0a4606 100644
--- a/components/cpu.c
+++ b/components/cpu.c
@@ -3,8 +3,8 @@
#include <stdio.h>
#include <string.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(__linux__)
const char *
@@ -110,9 +110,9 @@
b[CP_INTR])) / sum);
}
#elif defined(__FreeBSD__)
+ #include <devstat.h>
#include <sys/param.h>
#include <sys/sysctl.h>
- #include <devstat.h>
const char *
cpu_freq(const char *unused)
diff --git a/components/datetime.c b/components/datetime.c
index cf9fbba..5b10daf 100644
--- a/components/datetime.c
+++ b/components/datetime.c
@@ -2,8 +2,8 @@
#include <stdio.h>
#include <time.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
const char *
datetime(const char *fmt)
diff --git a/components/disk.c b/components/disk.c
index 64e2105..0d1c13e 100644
--- a/components/disk.c
+++ b/components/disk.c
@@ -2,8 +2,8 @@
#include <stdio.h>
#include <sys/statvfs.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
const char *
disk_free(const char *path)
diff --git a/components/hostname.c b/components/hostname.c
index f04a913..dab8b63 100644
--- a/components/hostname.c
+++ b/components/hostname.c
@@ -2,8 +2,8 @@
#include <stdio.h>
#include <unistd.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
const char *
hostname(const char *unused)
diff --git a/components/ip.c b/components/ip.c
index 6d1da68..a954ae1 100644
--- a/components/ip.c
+++ b/components/ip.c
@@ -4,15 +4,15 @@
#include <stdio.h>
#include <string.h>
#if defined(__OpenBSD__)
- #include <sys/types.h>
#include <sys/socket.h>
+ #include <sys/types.h>
#elif defined(__FreeBSD__)
#include <netinet/in.h>
#include <sys/socket.h>
#endif
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
static const char *
ip(const char *interface, unsigned short sa_family)
diff --git a/components/kernel_release.c b/components/kernel_release.c
index e21fefe..36a6a44 100644
--- a/components/kernel_release.c
+++ b/components/kernel_release.c
@@ -1,9 +1,9 @@
/* See LICENSE file for copyright and license details. */
-#include <sys/utsname.h>
#include <stdio.h>
+#include <sys/utsname.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
const char *
kernel_release(const char *unused)
diff --git a/components/keyboard_indicators.c b/components/keyboard_indicators.c
index 5f482e8..4a81539 100644
--- a/components/keyboard_indicators.c
+++ b/components/keyboard_indicators.c
@@ -4,8 +4,8 @@
#include <string.h>
#include <X11/Xlib.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
/*
* fmt consists of uppercase or lowercase 'c' for caps lock and/or 'n' for num
diff --git a/components/keymap.c b/components/keymap.c
index 2a99474..e2dbc6f 100644
--- a/components/keymap.c
+++ b/components/keymap.c
@@ -5,8 +5,8 @@
#include <X11/XKBlib.h>
#include <X11/Xlib.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
static int
valid_layout_or_variant(char *sym)
diff --git a/components/load_avg.c b/components/load_avg.c
index ab33fa3..f278a40 100644
--- a/components/load_avg.c
+++ b/components/load_avg.c
@@ -2,8 +2,8 @@
#include <stdio.h>
#include <stdlib.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
const char *
load_avg(const char *unused)
diff --git a/components/netspeeds.c b/components/netspeeds.c
index f7bac2e..0f92368 100644
--- a/components/netspeeds.c
+++ b/components/netspeeds.c
@@ -1,9 +1,9 @@
/* See LICENSE file for copyright and license details. */
-#include <stdio.h>
#include <limits.h>
+#include <stdio.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(__linux__)
#include <stdint.h>
@@ -60,11 +60,11 @@
1024);
}
#elif defined(__OpenBSD__) | defined(__FreeBSD__)
- #include <string.h>
#include <ifaddrs.h>
+ #include <net/if.h>
+ #include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
- #include <net/if.h>
const char *
netspeed_rx(const char *interface)
diff --git a/components/num_files.c b/components/num_files.c
index 3911da7..8205562 100644
--- a/components/num_files.c
+++ b/components/num_files.c
@@ -3,8 +3,8 @@
#include <stdio.h>
#include <string.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
const char *
num_files(const char *path)
diff --git a/components/ram.c b/components/ram.c
index d90b107..305d4bb 100644
--- a/components/ram.c
+++ b/components/ram.c
@@ -1,8 +1,8 @@
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(__linux__)
#include <stdint.h>
diff --git a/components/run_command.c b/components/run_command.c
index be7d9e2..942f3c4 100644
--- a/components/run_command.c
+++ b/components/run_command.c
@@ -2,8 +2,8 @@
#include <stdio.h>
#include <string.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
const char *
run_command(const char *cmd)
diff --git a/components/swap.c b/components/swap.c
index 2e8a6fb..49ba3cb 100644
--- a/components/swap.c
+++ b/components/swap.c
@@ -4,8 +4,8 @@
#include <stdlib.h>
#include <string.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(__linux__)
static int
@@ -199,11 +199,11 @@
return fmt_human(used * 1024, 1024);
}
#elif defined(__FreeBSD__)
+ #include <fcntl.h>
+ #include <kvm.h>
#include <stdlib.h>
#include <sys/types.h>
- #include <fcntl.h>
#include <unistd.h>
- #include <kvm.h>
static int getswapinfo(struct kvm_swap *swap_info, size_t size)
{
diff --git a/components/temperature.c b/components/temperature.c
index 306a09f..7be5118 100644
--- a/components/temperature.c
+++ b/components/temperature.c
@@ -1,8 +1,8 @@
/* See LICENSE file for copyright and license details. */
#include <stddef.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(__linux__)
diff --git a/components/uptime.c b/components/uptime.c
index 99d1eda..d97e5e8 100644
--- a/components/uptime.c
+++ b/components/uptime.c
@@ -3,8 +3,8 @@
#include <stdio.h>
#include <time.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(CLOCK_BOOTTIME)
#define UPTIME_FLAG CLOCK_BOOTTIME
diff --git a/components/user.c b/components/user.c
index 770f5af..3517495 100644
--- a/components/user.c
+++ b/components/user.c
@@ -4,8 +4,8 @@
#include <sys/types.h>
#include <unistd.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
const char *
gid(const char *unused)
diff --git a/components/volume.c b/components/volume.c
index 5c85011..6cec556 100644
--- a/components/volume.c
+++ b/components/volume.c
@@ -5,14 +5,14 @@
#include <sys/ioctl.h>
#include <unistd.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#if defined(__OpenBSD__) | defined(__FreeBSD__)
- #include <sys/queue.h>
#include <poll.h>
#include <sndio.h>
#include <stdlib.h>
+ #include <sys/queue.h>
struct control {
LIST_ENTRY(control) next;
diff --git a/components/wifi.c b/components/wifi.c
index b9957ab..3211147 100644
--- a/components/wifi.c
+++ b/components/wifi.c
@@ -6,8 +6,8 @@
#include <sys/socket.h>
#include <unistd.h>
-#include "../util.h"
#include "../slstatus.h"
+#include "../util.h"
#define RSSI_TO_PERC(rssi) \
rssi >= -50 ? 100 : \