From: wessels <> Date: Tue, 17 Mar 1998 12:07:35 +0000 (+0000) Subject: removed unused code X-Git-Tag: SQUID_3_0_PRE1~3812 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74a10fe3d4276b3acf7e606b0d5ac5b7e46a8633;p=thirdparty%2Fsquid.git removed unused code --- diff --git a/include/util.h b/include/util.h index dbef5e9898..552dd86d11 100644 --- a/include/util.h +++ b/include/util.h @@ -1,5 +1,5 @@ /* - * $Id: util.h,v 1.46 1998/03/13 05:46:01 wessels Exp $ + * $Id: util.h,v 1.47 1998/03/17 05:07:35 wessels Exp $ * * AUTHOR: Harvest Derived * @@ -180,20 +180,6 @@ extern time_t parse_iso3307_time(const char *buf); extern char *base64_decode(const char *coded); extern const char *base64_encode(const char *decoded); -#if 0 /* trying new "pool"ed strings */ -typedef struct _String { - char *buf; - off_t off; - size_t len; - int refcount; -} String; - -extern String *stringCreate(size_t); -extern void stringAppend(String *, const char *, size_t); -extern void stringFree(String *); -#define stringLength(S) (S)->off -#endif - extern double xpercent(double part, double whole); extern int xpercentInt(double part, double whole); extern double xdiv(double nom, double denom);