My Project
Loading...
Searching...
No Matches
omAllocFunc.h
Go to the documentation of this file.
1/*******************************************************************
2 * File: omAllocFunc.h
3 * Purpose: declaration of ANSI-C conforming malloc functions
4 * which are sure to be functions, which start with the om prefix,
5 * and end with the Func suffix.
6 * Author: obachman@mathematik.uni-kl.de (Olaf Bachmann)
7 * Created: 11/99
8 *******************************************************************/
9
10void* omCallocFunc(size_t nmemb, size_t size);
11void* omMallocFunc(size_t size);
12void omFreeFunc(void* addr);
13void* omVallocFunc(size_t size);
14void* omReallocFunc(void* old_addr, size_t new_size);
15char* omStrdupFunc(const char* addr);
16void* omReallocSizeFunc(void* old_addr, size_t old_size, size_t new_size);
17void omFreeSizeFunc(void* addr, size_t size);
int size(const CanonicalForm &f, const Variable &v)
int size ( const CanonicalForm & f, const Variable & v )
Definition: cf_ops.cc:600
void * omVallocFunc(size_t size)
char * omStrdupFunc(const char *addr)
void * omCallocFunc(size_t nmemb, size_t size)
void * omReallocFunc(void *old_addr, size_t new_size)
#define omFreeFunc
Definition: xalloc.h:236
#define omFreeSizeFunc
Definition: xalloc.h:285
#define omReallocSizeFunc
Definition: xalloc.h:286
#define omMallocFunc
Definition: xalloc.h:284