From 103a434386d1b40315c0c36a9956703aac4e38d2 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 11 Jul 2001 07:10:43 +0000 Subject: One forgotten function. --- crypto/ui/ui_lib.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'crypto/ui/ui_lib.c') diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c index 5bb0efd7eb..00abeb0e55 100644 --- a/crypto/ui/ui_lib.c +++ b/crypto/ui/ui_lib.c @@ -706,6 +706,14 @@ int (*UI_method_get_writer(UI_METHOD *method))(UI*,UI_STRING*) return NULL; } +int (*UI_method_get_flusher(UI_METHOD *method))(UI*) + { + if (method) + return method->ui_flush; + else + return NULL; + } + int (*UI_method_get_reader(UI_METHOD *method))(UI*,UI_STRING*) { if (method) -- cgit v1.2.3