aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-01-13 05:31:16 +0000
committerDavid Shaw <[email protected]>2004-01-13 05:31:16 +0000
commit21d83f02fa41a37b27ca38bb78f49a9b1b683580 (patch)
treeffad951ab616402ff0399d213524a00abb30a9da
parent* miscutil.c (print_string2): New variation on print_string that allows (diff)
downloadgnupg-21d83f02fa41a37b27ca38bb78f49a9b1b683580.tar.gz
gnupg-21d83f02fa41a37b27ca38bb78f49a9b1b683580.zip
* util.h: Add prototype for print_string2().
-rw-r--r--include/ChangeLog4
-rw-r--r--include/util.h4
2 files changed, 7 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 06fa7a023..b461ce3b2 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,7 @@
+2004-01-13 David Shaw <[email protected]>
+
+ * util.h: Add prototype for print_string2().
+
2003-12-02 David Shaw <[email protected]>
* cipher.h: Make cipher list match 2440bis-09.
diff --git a/include/util.h b/include/util.h
index ba800d30b..bbbef0472 100644
--- a/include/util.h
+++ b/include/util.h
@@ -1,5 +1,6 @@
/* util.h
- * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+ * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
+ * 2004 Free Software Foundation, Inc.
*
* This file is part of GNUPG.
*
@@ -165,6 +166,7 @@ const char *strtimevalue( u32 stamp );
const char *strtimestamp( u32 stamp ); /* GMT */
const char *asctimestamp( u32 stamp ); /* localized */
void print_string( FILE *fp, const byte *p, size_t n, int delim );
+void print_string2( FILE *fp, const byte *p, size_t n, int delim, int delim2 );
void print_utf8_string( FILE *fp, const byte *p, size_t n );
void print_utf8_string2( FILE *fp, const byte *p, size_t n, int delim);
char *make_printable_string( const byte *p, size_t n, int delim );