[hackers] [surf] Use char instead of gchar and make them const when possible || Quentin Rameau

From: <git_AT_suckless.org>
Date: Sun, 22 Nov 2015 02:13:56 +0100 (CET)

commit 6124176b896b528d57aeab7e0eaa46271bcb59c5
Author: Quentin Rameau <quinq_AT_fifth.space>
AuthorDate: Sun Nov 22 01:52:13 2015 +0100
Commit: Quentin Rameau <quinq_AT_fifth.space>
CommitDate: Sun Nov 22 01:52:13 2015 +0100

    Use char instead of gchar and make them const when possible

diff --git a/surf.c b/surf.c
index edfc3c3..23fd452 100644
--- a/surf.c
+++ b/surf.c
_AT_@ -108,7 +108,7 @@ static char *buildpath(const char *path);
 static Client *newclient(Client *c);
 static void addaccelgroup(Client *c);
 static void loaduri(Client *c, const Arg *a);
-static char *geturi(Client *c);
+static const char *geturi(Client *c);
 static void setatom(Client *c, int a, const char *v);
 static const char *getatom(Client *c, int a);
 static void updatetitle(Client *c);
_AT_@ -116,12 +116,12 @@ static void gettogglestats(Client *c);
 static void getpagestats(Client *c);
 static WebKitCookieAcceptPolicy cookiepolicy_get(void);
 static char cookiepolicy_set(const WebKitCookieAcceptPolicy p);
-static const gchar *getstyle(const char *uri);
+static const char *getstyle(const char *uri);
 static void setstyle(Client *c, const char *stylefile);
 static void runscript(Client *c);
 static void evalscript(Client *c, const char *jsstr, ...);
 static void updatewinid(Client *c);
-static void handleplumb(Client *c, const gchar *uri);
+static void handleplumb(Client *c, const char *uri);
 static void newwindow(Client *c, const Arg *a, gboolean noembed);
 static void spawn(Client *c, const Arg *a);
 static void destroyclient(Client *c);
_AT_@ -392,7 +392,7 @@ loaduri(Client *c, const Arg *a)
         g_free(url);
 }
 
-char *
+const char *
 geturi(Client *c)
 {
         char *uri;
_AT_@ -513,7 +513,7 @@ cookiepolicy_set(const WebKitCookieAcceptPolicy p)
         return 'A';
 }
 
-const gchar *
+const char *
 getstyle(const char *uri)
 {
         int i;
_AT_@ -582,7 +582,7 @@ updatewinid(Client *c)
 }
 
 void
-handleplumb(Client *c, const gchar *uri)
+handleplumb(Client *c, const char *uri)
 {
         Arg a = (Arg)PLUMB(uri);
         spawn(c, &a);
Received on Sun Nov 22 2015 - 02:13:56 CET

This archive was generated by hypermail 2.3.0 : Sun Nov 22 2015 - 02:24:15 CET