Res.h modified. xmalloc now declares xstrdup.
[idzebra-moved-to-github.git] / include / res.h
1 /*
2  * Copyright (C) 1994, Index Data I/S 
3  * All rights reserved.
4  * Sebastian Hammer, Adam Dickmeiss
5  *
6  * $Log: res.h,v $
7  * Revision 1.2  1994-08-18 08:22:26  adam
8  * Res.h modified. xmalloc now declares xstrdup.
9  *
10  */
11
12 #ifndef RES_H
13 #define RES_H
14
15 struct res_entry {
16     char *name;
17     char *value;
18     struct res_entry *next;
19 };
20
21 typedef struct res_struct {
22     struct res_entry *first, *last;
23     char *name;
24     int  init;
25 } *Res;
26
27 #endif