1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-09-24 15:31:41 +02:00

* util.h: Add prototype for print_string2().

This commit is contained in:
David Shaw 2004-01-16 05:14:50 +00:00
parent ef3f2d81a1
commit 7bd05d176b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-01-15 David Shaw <dshaw@jabberwocky.com>
* util.h: Add prototype for print_string2().
2003-12-28 David Shaw <dshaw@jabberwocky.com> 2003-12-28 David Shaw <dshaw@jabberwocky.com>
* http.h: Pass the http proxy from outside rather than pulling it * http.h: Pass the http proxy from outside rather than pulling it

View File

@ -1,5 +1,6 @@
/* util.h /* 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. * This file is part of GNUPG.
* *
@ -169,6 +170,7 @@ const char *strtimevalue( u32 stamp );
const char *strtimestamp( u32 stamp ); /* GMT */ const char *strtimestamp( u32 stamp ); /* GMT */
const char *asctimestamp( u32 stamp ); /* localized */ const char *asctimestamp( u32 stamp ); /* localized */
void print_string( FILE *fp, const byte *p, size_t n, int delim ); 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_string( FILE *fp, const byte *p, size_t n );
void print_utf8_string2( FILE *fp, const byte *p, size_t n, int delim); 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 ); char *make_printable_string( const byte *p, size_t n, int delim );