aboutsummaryrefslogtreecommitdiffstats
path: root/jnlib/logging.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2007-08-22 20:36:33 +0000
committerWerner Koch <[email protected]>2007-08-22 20:36:33 +0000
commit84efbe69c7452fc4fce5f84b5adc4f770aa7613a (patch)
treef20057c44d67c70925afcee9f0fd9f0ab53e744b /jnlib/logging.h
parentUpdated estream. (diff)
downloadgnupg-84efbe69c7452fc4fce5f84b5adc4f770aa7613a.tar.gz
gnupg-84efbe69c7452fc4fce5f84b5adc4f770aa7613a.zip
Fixed creation of private keys under W32.
Minor code cleanups.
Diffstat (limited to '')
-rw-r--r--jnlib/logging.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/jnlib/logging.h b/jnlib/logging.h
index a54e2d50d..9da46e29e 100644
--- a/jnlib/logging.h
+++ b/jnlib/logging.h
@@ -71,6 +71,11 @@ void log_error( const char *fmt, ... ) JNLIB_GCC_A_PRINTF(1,2);
void log_info( const char *fmt, ... ) JNLIB_GCC_A_PRINTF(1,2);
void log_debug( const char *fmt, ... ) JNLIB_GCC_A_PRINTF(1,2);
void log_printf( const char *fmt, ... ) JNLIB_GCC_A_PRINTF(1,2);
+
+/* Print a hexdump of BUFFER. With TEXT passes as NULL print just the
+ raw dump, with TEXT being an empty string, print a trailing
+ linefeed, otherwise print an entire debug line with TEXT followed
+ by the hexdump and a final LF. */
void log_printhex (const char *text, const void *buffer, size_t length);