aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog4
-rw-r--r--include/util.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index a591c9136..513b036a0 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2001-09-07 Werner Koch <[email protected]>
+
+ * util.h: Add strsep().
+
2001-08-30 Werner Koch <[email protected]>
* cipher.h (DEK): Added use_mdc.
diff --git a/include/util.h b/include/util.h
index aa2d90594..eafcabcf4 100644
--- a/include/util.h
+++ b/include/util.h
@@ -203,6 +203,9 @@ char *stpcpy(char *a,const char *b);
#ifndef HAVE_STRLWR
char *strlwr(char *a);
#endif
+#ifndef HAVE_STRSEP
+char *strsep (char **stringp, const char *delim);
+#endif
#ifndef HAVE_STRCASECMP
int strcasecmp( const char *, const char *b);
#endif