From: cuz Date: Thu, 14 Sep 2000 19:24:14 +0000 (+0000) Subject: Export/rename init function X-Git-Tag: V2.12.0~3197 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2ff9f2fc1dd63f427e91a03505a223c814cd0c0a;p=cc65 Export/rename init function git-svn-id: svn://svn.cc65.org/cc65/trunk@326 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/common/tgttrans.c b/src/common/tgttrans.c index d88f6d244..ba4e3f5e0 100644 --- a/src/common/tgttrans.c +++ b/src/common/tgttrans.c @@ -96,8 +96,8 @@ static const unsigned char* Tab = 0; -void InitTarget (void) -/* Initialize the target and the translation tables */ +void TgtTranslateInit (void) +/* Initialize the translation tables */ { switch (Target) { case TGT_NONE: break; diff --git a/src/common/tgttrans.h b/src/common/tgttrans.h index b9ede0a89..fc5f8aeba 100644 --- a/src/common/tgttrans.h +++ b/src/common/tgttrans.h @@ -44,6 +44,9 @@ +void TgtTranslateInit (void); +/* Initialize the translation tables */ + int TgtTranslateChar (int C); /* Translate one character from the source character set into the target * system character set.