From 7bd05d176b39591e33f311d5bc2721aed86830d3 Mon Sep 17 00:00:00 2001 From: David Shaw Date: Fri, 16 Jan 2004 05:14:50 +0000 Subject: [PATCH] * util.h: Add prototype for print_string2(). --- include/ChangeLog | 4 ++++ include/util.h | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/ChangeLog b/include/ChangeLog index 86ebe4108..47961b58a 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2004-01-15 David Shaw + + * util.h: Add prototype for print_string2(). + 2003-12-28 David Shaw * http.h: Pass the http proxy from outside rather than pulling it diff --git a/include/util.h b/include/util.h index da555304f..4e9c07681 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. * @@ -169,6 +170,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 );