2007-04-27 21:58:48 +04:00
|
|
|
/*
|
|
|
|
* calmwm - the calm window manager
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
2008-01-11 19:06:44 +03:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2007-04-27 21:58:48 +04:00
|
|
|
*
|
2011-05-11 17:53:51 +04:00
|
|
|
* $OpenBSD$
|
2007-04-27 21:58:48 +04:00
|
|
|
*/
|
|
|
|
|
2015-01-19 17:54:16 +03:00
|
|
|
#include <sys/types.h>
|
2009-12-15 07:10:42 +03:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
2015-01-19 17:54:16 +03:00
|
|
|
#include <limits.h>
|
2013-12-17 20:12:18 +04:00
|
|
|
#include <stdarg.h>
|
2012-11-16 18:15:48 +04:00
|
|
|
#include <stdint.h>
|
2012-11-09 07:52:02 +04:00
|
|
|
#include <stdio.h>
|
2009-12-15 07:10:42 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2007-04-27 21:58:48 +04:00
|
|
|
#include "calmwm.h"
|
|
|
|
|
|
|
|
void *
|
|
|
|
xmalloc(size_t siz)
|
|
|
|
{
|
2008-07-11 18:21:28 +04:00
|
|
|
void *p;
|
2007-04-27 21:58:48 +04:00
|
|
|
|
2012-11-16 18:15:48 +04:00
|
|
|
if (siz == 0)
|
|
|
|
errx(1, "xmalloc: zero size");
|
2007-04-27 21:58:48 +04:00
|
|
|
if ((p = malloc(siz)) == NULL)
|
|
|
|
err(1, "malloc");
|
|
|
|
|
2014-09-07 23:27:30 +04:00
|
|
|
return(p);
|
2007-04-27 21:58:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
2008-04-16 17:38:09 +04:00
|
|
|
xcalloc(size_t no, size_t siz)
|
2007-04-27 21:58:48 +04:00
|
|
|
{
|
2008-07-11 18:21:28 +04:00
|
|
|
void *p;
|
2007-04-27 21:58:48 +04:00
|
|
|
|
2012-11-16 18:15:48 +04:00
|
|
|
if (siz == 0 || no == 0)
|
|
|
|
errx(1, "xcalloc: zero size");
|
|
|
|
if (SIZE_MAX / no < siz)
|
|
|
|
errx(1, "xcalloc: no * siz > SIZE_MAX");
|
2008-04-16 17:38:09 +04:00
|
|
|
if ((p = calloc(no, siz)) == NULL)
|
2007-04-27 21:58:48 +04:00
|
|
|
err(1, "calloc");
|
|
|
|
|
2014-09-07 23:27:30 +04:00
|
|
|
return(p);
|
2007-04-27 21:58:48 +04:00
|
|
|
}
|
|
|
|
|
2015-03-29 02:12:47 +03:00
|
|
|
void *
|
|
|
|
xreallocarray(void *ptr, size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
|
|
|
p = reallocarray(ptr, nmemb, size);
|
|
|
|
if (p == NULL)
|
|
|
|
errx(1, "xreallocarray: out of memory (new_size %zu bytes)",
|
|
|
|
nmemb * size);
|
|
|
|
return(p);
|
|
|
|
}
|
|
|
|
|
2007-04-27 21:58:48 +04:00
|
|
|
char *
|
|
|
|
xstrdup(const char *str)
|
|
|
|
{
|
2008-07-11 18:21:28 +04:00
|
|
|
char *p;
|
2007-04-27 21:58:48 +04:00
|
|
|
|
|
|
|
if ((p = strdup(str)) == NULL)
|
|
|
|
err(1, "strdup");
|
|
|
|
|
2014-09-07 23:27:30 +04:00
|
|
|
return(p);
|
2007-04-27 21:58:48 +04:00
|
|
|
}
|
2012-11-28 18:32:44 +04:00
|
|
|
|
|
|
|
int
|
|
|
|
xasprintf(char **ret, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
i = vasprintf(ret, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (i < 0 || *ret == NULL)
|
|
|
|
err(1, "asprintf");
|
|
|
|
|
2014-09-07 23:27:30 +04:00
|
|
|
return(i);
|
2012-11-28 18:32:44 +04:00
|
|
|
}
|