2011-10-02 19:08:49 +02:00
|
|
|
/*
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2011-10-25 22:19:38 +02:00
|
|
|
* © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
|
2011-10-02 19:08:49 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2011-10-23 14:16:56 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
2011-10-02 19:08:49 +02:00
|
|
|
#include <err.h>
|
|
|
|
|
2011-10-23 18:38:21 +02:00
|
|
|
#include "libi3.h"
|
2011-10-02 19:08:49 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The s* functions (safe) are wrappers around malloc, strdup, …, which exits if one of
|
|
|
|
* the called functions returns NULL, meaning that there is no more memory available
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void *smalloc(size_t size) {
|
|
|
|
void *result = malloc(size);
|
|
|
|
if (result == NULL)
|
|
|
|
err(EXIT_FAILURE, "malloc(%zd)", size);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *scalloc(size_t size) {
|
|
|
|
void *result = calloc(size, 1);
|
|
|
|
if (result == NULL)
|
|
|
|
err(EXIT_FAILURE, "calloc(%zd)", size);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *srealloc(void *ptr, size_t size) {
|
|
|
|
void *result = realloc(ptr, size);
|
|
|
|
if (result == NULL && size > 0)
|
|
|
|
err(EXIT_FAILURE, "realloc(%zd)", size);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *sstrdup(const char *str) {
|
|
|
|
char *result = strdup(str);
|
|
|
|
if (result == NULL)
|
|
|
|
err(EXIT_FAILURE, "strdup()");
|
|
|
|
return result;
|
|
|
|
}
|
2011-10-23 14:16:56 +02:00
|
|
|
|
|
|
|
int sasprintf(char **strp, const char *fmt, ...) {
|
|
|
|
va_list args;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
if ((result = vasprintf(strp, fmt, args)) == -1)
|
|
|
|
err(EXIT_FAILURE, "asprintf(%s)", fmt);
|
|
|
|
va_end(args);
|
|
|
|
return result;
|
|
|
|
}
|