X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fres.h;h=d742fa7d8f26fe5d14115feda36aa87ee51b435c;hb=edf09fc5529eae3e8214a432058b4c07b2b8d2f9;hp=28cc30f8f5eab81b297305e115f082e98e18503e;hpb=58494fa0c8c5fc858b71c61d363a31d9acf7153c;p=idzebra-moved-to-github.git diff --git a/include/res.h b/include/res.h index 28cc30f..d742fa7 100644 --- a/include/res.h +++ b/include/res.h @@ -4,7 +4,13 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: res.h,v $ - * Revision 1.4 1994-09-06 13:02:29 quinn + * Revision 1.6 1996-10-29 13:44:12 adam + * Added res_get_match. + * + * Revision 1.5 1994/09/16 14:37:46 quinn + * added res_get_def + * + * Revision 1.4 1994/09/06 13:02:29 quinn * Removed const from res_get * * Revision 1.3 1994/08/18 09:43:04 adam @@ -33,6 +39,8 @@ typedef struct res_struct { Res res_open (const char *name); void res_close (Res r); char *res_get (Res r, const char *name); +char *res_get_def (Res r, const char *name, char *def); +int res_get_match (Res r, const char *name, const char *value, const char *s); void res_put (Res r, const char *name, const char *value); void res_trav (Res r, const char *prefix, void (*f)(const char *name, const char *value));