url: Whitespace cleanups.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 14 Mar 2006 16:41:39 +0000 (16:41 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 14 Mar 2006 16:41:39 +0000 (16:41 +0000)
url.c

diff --git a/url.c b/url.c
index 5943841..d859bfa 100644 (file)
--- a/url.c
+++ b/url.c
  * 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@ --- *
  *