File: xmalloc.c

package info (click to toggle)
ffe 0.3.8-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 1,360 kB
  • sloc: ansic: 6,223; sh: 4,273; makefile: 20
file content (91 lines) | stat: -rw-r--r-- 2,096 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
 *    ffe - flat file extractor
 *
 *    Copyright (C) 2006 Timo Savinen
 *    This file is part of ffe.
 * 
 *    ffe is free software; you can redistribute it and/or modify
 *    it under the terms of the GNU General Public License as published by
 *    the Free Software Foundation; either version 2 of the License, or
 *    (at your option) any later version.
 *
 *    ffe is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with ffe; if not, write to the Free Software
 *    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

/* $Id: xmalloc.c,v 1.11 2008-05-23 06:43:22 timo Exp $ */

#include "ffe.h"
#include <stdlib.h>
#include <string.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

void *
xmalloc (size_t size)
{
    register void *value = malloc(size);
    if (value == NULL) panic("Out of memory",NULL,NULL);
    return value;
}

char *
xstrdup(char *str)
{
    register char *ret = strdup(str);
    if (ret == NULL) panic("Out of memory",NULL,NULL);
    return ret;
}

void *
xrealloc (void *ptr, size_t size)
{
    register void *value = realloc(ptr,size);
    if (value == NULL) panic("Out of memory",NULL,NULL);
    return value;
}

FILE *
xxfopen(char *name, char *mode, char bin_asc)
{
    register FILE *ret;

    ret = fopen(name,mode);
    if(ret == NULL) panic("Error in opening file",name,strerror(errno));

#if defined(HAVE_SETMODE) && defined(WIN32)
    if(bin_asc == 'a') setmode(fileno(ret),O_TEXT);
    if(bin_asc == 'b') setmode(fileno(ret),O_BINARY);
#endif
    return ret;
}

FILE *
xfopen(char *name, char *mode)
{
    return xxfopen(name,mode,'a');
}

FILE *
xfopenb(char *name, char *mode)
{
    return xxfopen(name,mode,'b'); 
}

void
file_to_text(FILE *fp)
{
#if defined(HAVE_SETMODE) && defined(WIN32)
    setmode(fileno(fp),O_TEXT);
#endif
}