summaryrefslogtreecommitdiff
path: root/src/print_file_contents.c
diff options
context:
space:
mode:
authorOrestis Floros <orestisflo@gmail.com>2020-05-01 12:15:30 +0200
committerOrestis Floros <orestisflo@gmail.com>2020-05-01 12:16:55 +0200
commitd8e8eb2eef04443d3489d79cf5bf02d8ee2373c2 (patch)
tree84620675c39db4a78bd1fb7ce52cba83c8b9f56e /src/print_file_contents.c
parent675c423647864837e1261a01202cd932d548e1cd (diff)
Move general functions scalloc, sstrdup out of i3status.c
Diffstat (limited to 'src/print_file_contents.c')
-rw-r--r--src/print_file_contents.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/print_file_contents.c b/src/print_file_contents.c
index 65813f5..37701f1 100644
--- a/src/print_file_contents.c
+++ b/src/print_file_contents.c
@@ -14,14 +14,6 @@
#define STRING_SIZE 10
-static void *scalloc(size_t size) {
- void *result = calloc(size, 1);
- if (result == NULL) {
- die("Error: out of memory (calloc(%zu))\n", size);
- }
- return result;
-}
-
void print_file_contents(yajl_gen json_gen, char *buffer, const char *title, const char *path, const char *format, const char *format_bad, const int max_chars) {
const char *walk = format;
char *outwalk = buffer;