dmenu/util.c

35 lines
596 B
C
Raw Normal View History

2007-05-30 12:19:06 +02:00
/* See LICENSE file for copyright and license details. */
2006-08-04 09:35:27 +02:00
#include "dmenu.h"
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
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)
2006-10-12 12:58:34 +02:00
eprint("fatal: could not malloc() %u bytes\n", size);
return res;
}
2006-08-04 09:35:27 +02:00
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);
}
2006-10-12 12:59:37 +02:00
char *
estrdup(const char *str) {
void *res = strdup(str);
if(!res)
eprint("fatal: could not malloc() %u bytes\n", strlen(str));
return res;
}