i3status/src/general.c

59 lines
1.3 KiB
C
Raw Normal View History

2009-07-21 18:26:53 +00:00
// 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 "i3status.h"
/*
* Reads size bytes into the destination buffer from filename.
*
*/
bool slurp(char *filename, char *destination, int size) {
2009-07-21 18:26:53 +00:00
int fd;
2009-07-21 18:26:53 +00:00
if ((fd = open(filename, O_RDONLY)) == -1)
return false;
2009-07-21 18:26:53 +00:00
(void)read(fd, destination, size);
(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);
}