diff options
author | Werner Koch <[email protected]> | 2017-07-20 15:20:17 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-07-20 16:13:40 +0000 |
commit | bddc2e04f1ddc18be20efc0f0508be401b345f42 (patch) | |
tree | b9fb9c1a21a6bc43492c8b989e17b5d8df6920f3 /common/miscellaneous.c | |
parent | doc: Comment fixes and one trailing comma fix. (diff) | |
download | gnupg-bddc2e04f1ddc18be20efc0f0508be401b345f42.tar.gz gnupg-bddc2e04f1ddc18be20efc0f0508be401b345f42.zip |
common: New function print_utf9_string.
* common/miscellaneous.c (print_utf8_string): New.
--
This is a simple convenience function.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | common/miscellaneous.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/common/miscellaneous.c b/common/miscellaneous.c index c9c603d34..caeb66f81 100644 --- a/common/miscellaneous.c +++ b/common/miscellaneous.c @@ -228,6 +228,16 @@ print_utf8_buffer (estream_t stream, const void *p, size_t n) do_print_utf8_buffer (stream, p, n, NULL, NULL); } + +void +print_utf8_string (estream_t stream, const char *p) +{ + if (!p) + p = ""; + do_print_utf8_buffer (stream, p, strlen (p), NULL, NULL); +} + + /* Write LENGTH bytes of BUFFER to FP as a hex encoded string. RESERVED must be 0. */ void |