/*   -*- c -*-
 * 
 *  ----------------------------------------------------------------------
 *  Misc utilities.
 *  ----------------------------------------------------------------------
 *
 *  Copyright (c) 2002-2003 by PuhPuh
 *  
 *  This code is copyrighted property of the author.  It can still
 *  be used for any non-commercial purpose following conditions:
 *  
 *      1) This copyright notice is not removed.
 *      2) Source code follows any distribution of the software
 *         if possible.
 *      3) Copyright notice above is found in the documentation
 *         of the distributed software.
 *  
 *  Any express or implied warranties are disclaimed.  Author is
 *  not liable for any direct or indirect damages caused by the use
 *  of this software.
 *
 *  ----------------------------------------------------------------------
 *
 */


#include "ccincludes.h"
#include "ccutil.h"

void cc_fatal(const char *m)
{
  fprintf(stderr, "FATAL ERROR%s%s\n", 
	  (m != NULL) ? ": " : "",
	  (m != NULL) ? m :  "");
  exit(-1);
}

void *cc_xmalloc(size_t n)
{
  void *r;

  r = malloc(n);
  if (r == NULL)
    cc_fatal("Out of memory");
  return r;
}

void *cc_xcalloc(size_t n, size_t s)
{
  void *r;

  r = calloc(n, s);
  if (r == NULL)
    cc_fatal("Out of memory");
  return r;
}

void *cc_xrealloc(void *o, size_t n)
{
  void *r;

  r = realloc(o, n);
  if (r == NULL)
    cc_fatal("Out of memory");
  return r;
}

void *cc_xstrdup(const char *s)
{
  char *r;

  r = strdup(s != NULL ? s : "");
  if (r == NULL)
    cc_fatal("Out of memory");
  return r;
}

void *cc_xmemdup(const void *s, size_t len)
{
  unsigned char *r;

  r = cc_xmalloc(len + 1);
  r[len] = '\0';
  if (len > 0)
    memcpy(r, s, len);
  return (void *)r;
}

void cc_xfree(void *p)
{
  if (p != NULL)
    free(p);
}

/* eof (ccutil.c) */


syntax highlighted by Code2HTML, v. 0.9.1