From: Martin Mares Date: Mon, 19 Jan 1998 19:13:35 +0000 (+0000) Subject: Added universal function for scanning of object trees. I'll convert X-Git-Tag: holmes-import~1678 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=b1cb1bbbff519607af60a766ff267ea28c943ad8;p=libucw.git Added universal function for scanning of object trees. I'll convert gived and expire to use it some day, but there are more important things to do now. --- diff --git a/lib/lib.h b/lib/lib.h index 70b2e366..d4ac835f 100644 --- a/lib/lib.h +++ b/lib/lib.h @@ -154,4 +154,8 @@ void rx_free(regex *r); int rx_match(regex *r, byte *s); int rx_subst(regex *r, byte *by, byte *src, byte *dest, uns destlen); +/* objwalk.c */ + +void scan_obj_tree(byte *, void (*)(ulg, byte *)); + #endif