From: Mark Wooding Date: Tue, 14 Mar 2006 16:41:39 +0000 (+0000) Subject: url: Whitespace cleanups. X-Git-Tag: 2.0.4~11 X-Git-Url: https://git.distorted.org.uk/~mdw/mLib/commitdiff_plain/0ddebb8f377a5daa1f546f18a956db99c54685ca url: Whitespace cleanups. --- diff --git a/url.c b/url.c index 5943841..d859bfa 100644 --- a/url.c +++ b/url.c @@ -48,10 +48,7 @@ * Use: Initializes a URL encoding context. */ -void url_initenc(url_ectx *ctx) -{ - ctx->f = 0; -} +void url_initenc(url_ectx *ctx) { ctx->f = 0; } /* --- @encode@ --- * * @@ -115,10 +112,7 @@ void url_enc(url_ectx *ctx, dstr *d, const char *name, const char *value) * Use: Initializes a URL decoding context. */ -void url_initdec(url_dctx *ctx, const char *p) -{ - ctx->p = p; -} +void url_initdec(url_dctx *ctx, const char *p) { ctx->p = p; } /* --- @decode@ --- * *