dmenu/util.c

37 lines
712 B
C
Raw Normal View History

2007-04-13 11:36:44 +02:00
/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
* © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
* See LICENSE file for 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;
}