aboutsummaryrefslogtreecommitdiffstats
path: root/indep.h
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-11-26 09:01:08 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-11-26 09:01:08 +0000
commitb136c763a15a19e9fea22d53645f1c4944a05cee (patch)
tree8647dd4cd9e4d9fd415a03616ee71e4830c7e136 /indep.h
parent[w3m-dev 02553] (diff)
downloadw3m-b136c763a15a19e9fea22d53645f1c4944a05cee.tar.gz
w3m-b136c763a15a19e9fea22d53645f1c4944a05cee.zip
[w3m-dev 02555]
From: Fumitoshi UKAI <ukai@debian.or.jp>
Diffstat (limited to '')
-rw-r--r--indep.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/indep.h b/indep.h
index 710608b..4a5ac61 100644
--- a/indep.h
+++ b/indep.h
@@ -1,8 +1,9 @@
-/* $Id: indep.h,v 1.5 2001/11/21 16:29:46 ukai Exp $ */
+/* $Id: indep.h,v 1.6 2001/11/26 09:01:08 ukai Exp $ */
#ifndef INDEP_H
#define INDEP_H
#include "gc.h"
#include "Str.h"
+#include "config.h"
#ifndef TRUE
#define TRUE 1
@@ -23,7 +24,9 @@ extern int strCmp(const void *s1, const void *s2);
extern char *currentdir(void);
extern char *cleanupName(char *name);
extern char *expandPath(char *name);
-extern char *strcasestr(char *s1, char *s2);
+#ifndef HAVE_STRCASESTR
+extern char *strcasestr(const char *s1, const char *s2);
+#endif
extern int strcasemstr(char *str, char *srch[], char **ret_ptr);
extern char *remove_space(char *str);
extern int non_null(char *s);