2007-04-13 17:36:44 +08: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 15:35:27 +08:00
|
|
|
#include "dmenu.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
void *
|
2006-09-12 16:59:00 +08:00
|
|
|
emalloc(unsigned int size) {
|
2006-08-04 15:35:27 +08:00
|
|
|
void *res = malloc(size);
|
2006-10-06 17:52:57 +08:00
|
|
|
|
2006-08-04 15:35:27 +08:00
|
|
|
if(!res)
|
2006-10-12 18:58:34 +08:00
|
|
|
eprint("fatal: could not malloc() %u bytes\n", size);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2006-08-04 15:35:27 +08:00
|
|
|
void
|
2006-09-12 16:59:00 +08:00
|
|
|
eprint(const char *errstr, ...) {
|
2006-08-04 15:35:27 +08:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, errstr);
|
|
|
|
vfprintf(stderr, errstr, ap);
|
|
|
|
va_end(ap);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2006-10-12 18:59:37 +08:00
|
|
|
|
|
|
|
char *
|
|
|
|
estrdup(const char *str) {
|
|
|
|
void *res = strdup(str);
|
|
|
|
|
|
|
|
if(!res)
|
|
|
|
eprint("fatal: could not malloc() %u bytes\n", strlen(str));
|
|
|
|
return res;
|
|
|
|
}
|