From 0686d7c10c7b198d59e01f8770e54ee314d6cfdf Mon Sep 17 00:00:00 2001 From: David Shaw Date: Fri, 14 Jun 2002 19:34:30 +0000 Subject: [PATCH] * util.h: Add pop_strlist() from strgutil.c. --- include/ChangeLog | 4 ++++ include/util.h | 1 + 2 files changed, 5 insertions(+) diff --git a/include/ChangeLog b/include/ChangeLog index e401a6550..8ea0354fb 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2002-06-14 David Shaw + + * util.h: Add pop_strlist() from strgutil.c. + 2002-06-07 Stefan Bellon * util.h [__riscos__]: RISC OS needs strings.h for strcasecmp() diff --git a/include/util.h b/include/util.h index 1cb76c911..42af78166 100644 --- a/include/util.h +++ b/include/util.h @@ -181,6 +181,7 @@ STRLIST append_to_strlist( STRLIST *list, const char *string ); STRLIST append_to_strlist2( STRLIST *list, const char *string, int is_utf8 ); STRLIST strlist_prev( STRLIST head, STRLIST node ); STRLIST strlist_last( STRLIST node ); +char *pop_strlist( STRLIST *list ); const char *memistr( const char *buf, size_t buflen, const char *sub ); const char *ascii_memistr( const char *buf, size_t buflen, const char *sub ); char *mem2str( char *, const void *, size_t);