File: memory.h

package info (click to toggle)
pcx 1.1.18-2
  • links: PTS
  • area: non-free
  • in suites: lenny, squeeze
  • size: 2,644 kB
  • ctags: 1,980
  • sloc: ansic: 20,454; fortran: 2,974; makefile: 367; sh: 150; csh: 48
file content (26 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (6)
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
/* global declaration of memory allocation routines in PCx()
 *
 * PCx beta-2.0  10/31/96.
 *
 * Authors: Joe Czyzyk, Sanjay Mehrotra, Steve Wright.
 *
 * (C) 1996 University of Chicago. See COPYRIGHT in main directory.
 */

#include <stdio.h>

char    *Malloc();
char    *Calloc();
void     Free();
char    *StrDup();
double  *NewDouble();
double **NewDouble2();
int     *NewInt();
char    *NewChar();
char    *Realloc();


double  **NewDoublePtr();
int     **NewIntPtr();
char    **NewCharPtr();
void      OutOfSpace();