From 142db8cf4f19a1754fb482595d79b7b6a898e071 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Sun, 9 Oct 2016 10:36:40 -0400 Subject: [PATCH] export conv_init() and conv_enc() They are used in other files. Signed-off-by: Felix Janda Signed-off-by: Sven Verdoolaege --- common/conv.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/conv.c b/common/conv.c index 9884a634..1a821b71 100644 --- a/common/conv.c +++ b/common/conv.c @@ -314,6 +314,9 @@ cs_int2char(SCR *sp, const CHAR_T * str, ssize_t len, CONVWIN *cw, #endif +/* + * PUBLIC: void conv_init __P((SCR *, SCR *)); + */ void conv_init (SCR *orig, SCR *sp) { @@ -335,6 +338,9 @@ conv_init (SCR *orig, SCR *sp) } } +/* + * PUBLIC: int conv_enc __P((SCR *, int, char *)); + */ int conv_enc (SCR *sp, int option, char *enc) { -- 2.11.4.GIT