Xinqi Bao's Git

Move components into dedicated subdirectory
[slstatus.git] / components / entropy.c
diff --git a/components/entropy.c b/components/entropy.c
new file mode 100644 (file)
index 0000000..0d3564e
--- /dev/null
@@ -0,0 +1,13 @@
+/* See LICENSE file for copyright and license details. */
+#include <stdio.h>
+
+#include "../util.h"
+
+const char *
+entropy(void)
+{
+       int num;
+
+       return (pscanf("/proc/sys/kernel/random/entropy_avail", "%d", &num) == 1) ?
+                      bprintf("%d", num) : NULL;
+}