summaryrefslogtreecommitdiff
path: root/src/general.c
blob: c5b33b46f652142dbfad53fdd7a73463c217fd37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// vim:ts=8:expandtab
#include <sys/types.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/fcntl.h>
#include <sys/stat.h>

#include "i3status.h"

/*
 * Reads size bytes into the destination buffer from filename.
 *
 */
bool slurp(const char *filename, char *destination, int size) {
        int fd;

        if ((fd = open(filename, O_RDONLY)) == -1)
                return false;

        /* We need one byte for the trailing 0 byte */
        int n = read(fd, destination, size-1);
        if (n != -1)
                destination[n] = '\0';
        (void)close(fd);

        return true;
}

/*
 * Skip the given character for exactly 'amount' times, returns
 * a pointer to the first non-'character' character in 'input'.
 *
 */
char *skip_character(char *input, char character, int amount) {
        char *walk;
        size_t len = strlen(input);
        int blanks = 0;

        for (walk = input; ((size_t)(walk - input) < len) && (blanks < amount); walk++)
                if (*walk == character)
                        blanks++;

        return (walk == input ? walk : walk-1);
}

/*
 * Write errormessage to statusbar and exit
 *
 */
void die(const char *fmt, ...) {
        char buffer[512];
        va_list ap;
        va_start(ap, fmt);
        (void)vsnprintf(buffer, sizeof(buffer), fmt, ap);
        va_end(ap);

        fprintf(stderr, "%s", buffer);
        exit(EXIT_FAILURE);
}