aboutsummaryrefslogtreecommitdiff
path: root/libsylph/utils.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-12-17 02:51:57 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2009-12-17 02:51:57 +0000
commitd5175b3fc5fda02558b7754ba160eee360ccb7ec (patch)
treeae491e12e7e2c1b3e88127db4e438d598698e36e /libsylph/utils.h
parent5fb2905b9f6c975ef03240393363471c81c1e21d (diff)
src/setup.c: check whether the specified location includes settings folder.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2398 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/utils.h')
-rw-r--r--libsylph/utils.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libsylph/utils.h b/libsylph/utils.h
index d062041a..c911fa5f 100644
--- a/libsylph/utils.h
+++ b/libsylph/utils.h
@@ -231,16 +231,21 @@ gint strcmp2 (const gchar *s1,
const gchar *s2);
gint path_cmp (const gchar *s1,
const gchar *s2);
+gboolean is_path_parent (const gchar *parent,
+ const gchar *child);
+
gchar *strretchomp (gchar *str);
gchar *strtailchomp (gchar *str,
gchar tail_char);
gchar *strcrchomp (gchar *str);
+
gchar *strcasestr (const gchar *haystack,
const gchar *needle);
gpointer my_memmem (gconstpointer haystack,
size_t haystacklen,
gconstpointer needle,
size_t needlelen);
+
gchar *strncpy2 (gchar *dest,
const gchar *src,
size_t n);