aboutsummaryrefslogtreecommitdiff
path: root/slstatus/util.h
diff options
context:
space:
mode:
authorpml68 <tutorialmester@gmail.com>2023-12-27 00:46:22 +0100
committerpml68 <tutorialmester@gmail.com>2023-12-27 00:46:22 +0100
commitf9a968b6818c858d15f459ab9e8315b6df56952a (patch)
tree97f19f54e5fbc2be7c987edadd1a681cb52de015 /slstatus/util.h
downloadsuckless-setup-f9a968b6818c858d15f459ab9e8315b6df56952a.tar.gz
Initial commit
Diffstat (limited to '')
-rw-r--r--slstatus/util.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/slstatus/util.h b/slstatus/util.h
new file mode 100644
index 0000000..cf4b027
--- /dev/null
+++ b/slstatus/util.h
@@ -0,0 +1,16 @@
+/* See LICENSE file for copyright and license details. */
+#include <stdint.h>
+
+extern char buf[1024];
+
+#define LEN(x) (sizeof(x) / sizeof((x)[0]))
+
+extern char *argv0;
+
+void warn(const char *, ...);
+void die(const char *, ...);
+
+int esnprintf(char *str, size_t size, const char *fmt, ...);
+const char *bprintf(const char *fmt, ...);
+const char *fmt_human(uintmax_t num, int base);
+int pscanf(const char *path, const char *fmt, ...);