dmenu/util.c

48 lines
743 B
C
Raw Normal View History

2006-10-06 11:52:57 +02:00
/* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
2006-08-04 09:35:27 +02:00
* See LICENSE file for license details.
*/
#include "dmenu.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
#include <unistd.h>
/* static */
static void
badmalloc(unsigned int size) {
2006-08-04 09:35:27 +02:00
eprint("fatal: could not malloc() %u bytes\n", size);
}
/* extern */
void *
emalloc(unsigned int size) {
2006-08-04 09:35:27 +02:00
void *res = malloc(size);
2006-10-06 11:52:57 +02:00
2006-08-04 09:35:27 +02:00
if(!res)
badmalloc(size);
2006-08-04 09:35:27 +02:00
return res;
}
void
eprint(const char *errstr, ...) {
2006-08-04 09:35:27 +02:00
va_list ap;
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
exit(EXIT_FAILURE);
}
char *
estrdup(const char *str) {
2006-08-04 09:35:27 +02:00
void *res = strdup(str);
2006-10-06 11:52:57 +02:00
2006-08-04 09:35:27 +02:00
if(!res)
badmalloc(strlen(str));
2006-08-04 09:35:27 +02:00
return res;
}