summaryrefslogtreecommitdiff
path: root/libdyn/dyn.h
blob: 25a9a8aa153bb4f466a8a47140a16aef75566e1c (plain)
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
/*
 * This file is part of libdyn.a, the C Dynamic Object library.  It
 * contains the public header file.
 *
 * There are no restrictions on this code; however, if you make any
 * changes, I request that you document them so that I do not get
 * credit or blame for your modifications.
 *
 * Written by Barr3y Jaspan, Student Information Processing Board (SIPB)
 * and MIT-Project Athena, 1989.
 */


/*
 * dyn.h -- header file to be included by programs linking against
 * libdyn.a.
 */

#ifndef _Dyn_h
#define _Dyn_h

#ifdef notdef
typedef void *DynPtr;
#else
typedef char *DynPtr;
#endif

typedef struct _DynObject DynObjectRec, *DynObject;

/* Function macros */
#define DynHigh(obj)	(DynSize(obj) - 1)
#define DynLow(obj)	(0)

#ifdef SUNOS
#define memmove(a, b, c) bcopy(b, a, c)
#endif

/* Return status codes */
#define DYN_OK		-1000
#define DYN_NOMEM	-1001
#define DYN_BADINDEX	-1002
#define DYN_BADVALUE	-1003
     
/* Function declarations */
DynObject 	DynCreate();
int		DynAdd(), DynDelete(), DynDestroy(), DynDebug();
int		DynInsert(), DynParanoid();
DynPtr		DynGet();

#endif /* _Dyn_h */
/* DO NOT ADD ANYTHING AFTER THIS #endif */