summaryrefslogtreecommitdiffstats
path: root/lib/url/url.c
diff options
context:
space:
mode:
authorNeelesh Gupta <neelegup@linux.vnet.ibm.com>2013-10-28 12:45:08 +0530
committerJeremy Kerr <jk@ozlabs.org>2013-11-06 16:34:26 +0800
commitf385e8cacbc574e213b0805a8d383373f29a8058 (patch)
tree29d496cd73bed397ddf7e09db507f9c874b8da80 /lib/url/url.c
parent1cb9c56d6453bca28cacb5ab3fc134bb151fd6f0 (diff)
downloadtalos-petitboot-f385e8cacbc574e213b0805a8d383373f29a8058.tar.gz
talos-petitboot-f385e8cacbc574e213b0805a8d383373f29a8058.zip
lib/url: Export is_url() function
Signed-off-by: Neelesh Gupta <neelegup@linux.vnet.ibm.com> Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'lib/url/url.c')
-rw-r--r--lib/url/url.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/url/url.c b/lib/url/url.c
index 8a3d0db..700f87c 100644
--- a/lib/url/url.c
+++ b/lib/url/url.c
@@ -22,7 +22,6 @@
#define _GNU_SOURCE
#include <assert.h>
-#include <stdbool.h>
#include <string.h>
#include "log/log.h"
@@ -228,7 +227,7 @@ fail:
return NULL;
}
-static bool is_url(const char *str)
+bool is_url(const char *str)
{
return strstr(str, "://") != NULL;
}
OpenPOWER on IntegriCloud