From 19bce9145ecc83fecd671c0883584682dc378acb Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Mon, 7 Nov 2011 22:34:25 +0000 Subject: [PATCH] code style --- src/plib/url.c | 47 +++++++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/src/plib/url.c b/src/plib/url.c index a5741bd..975a204 100644 --- a/src/plib/url.c +++ b/src/plib/url.c @@ -1,27 +1,26 @@ /* - Copyright (C) 2010 jeanfi@gmail.com - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA -*/ + * Copyright (C) 2010-2011 jeanfi@gmail.com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301 USA + */ /* - Part of the following code is based on: - http://www.geekhideout.com/urlcode.shtml -*/ - + * Part of the following code is based on: + * http://www.geekhideout.com/urlcode.shtml + */ #include "plib/url.h" #include @@ -39,15 +38,15 @@ char *url_normalize(const char *url) return ret; } -char to_hex(char code) +static char to_hex(char code) { static char hex[] = "0123456789abcdef"; return hex[code & 0x0f]; } /* - Returns a url-encoded version of str. -*/ + * Returns a url-encoded version of str. + */ char *url_encode(const char *str) { char *c, *buf, *pbuf; -- 2.7.4