/usr/include/gwenhywfar4/gwenhywfar/memory.h is in libgwenhywfar60-dev 4.10.0beta-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 92 93 94 95 96 97 98 99 100 101 | /***************************************************************************
$RCSfile$
-------------------
cvs : $Id$
begin : Sat Jun 28 2003
copyright : (C) 2003 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library 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 *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
* MA 02111-1307 USA *
* *
***************************************************************************/
#ifndef GWENHYWFAR_MEMORY_H
#define GWENHYWFAR_MEMORY_H
#include <gwenhywfar/gwenhywfarapi.h>
#include <gwenhywfar/types.h>
#include <gwenhywfar/error.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#ifdef __cplusplus
extern "C" {
#endif
/* this is taken from the system header file assert.h and
* and modified by me (Martin Preuss).
*/
# if defined __cplusplus ? __GNUC_PREREQ (2, 6) : __GNUC_PREREQ (2, 4)
# define GWEN_LOCATION_FUNCTION __PRETTY_FUNCTION__
# else
# if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
# define GWEN_LOCATION_FUNCTION __func__
# else
# define GWEN_LOCATION_FUNCTION ((__const char *) "unknown function")
# endif
# endif
GWENHYWFAR_API
void *GWEN_Memory_malloc(size_t dsize);
GWENHYWFAR_API
void GWEN_Memory_dealloc(void *p);
GWENHYWFAR_API
void *GWEN_Memory_realloc(void *oldp, size_t nsize);
GWENHYWFAR_API
char *GWEN_Memory_strdup(const char *s);
GWENHYWFAR_API
void GWEN_Memory_Collect(void);
GWENHYWFAR_API
void GWEN_Memory_Dump(void);
#define GWEN_MEM_NEW(typ, memptr) \
memptr=(typ*)GWEN_Memory_malloc(sizeof(typ));
#define GWEN_MEM_FREE(varname) \
GWEN_Memory_dealloc((void*)varname);
#define GWEN_NEW_OBJECT(typ, varname)\
{\
varname=(typ*)GWEN_Memory_malloc(sizeof(typ)); \
memset(varname, 0, sizeof(typ));\
}
#define GWEN_FREE_OBJECT(varname) \
GWEN_Memory_dealloc((void*)varname);
#ifdef __cplusplus
}
#endif
#endif /* GWENHYWFAR_MEMORY_H */
|