]> git.sur5r.net Git - cc65/commitdiff
Export/rename init function
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 14 Sep 2000 19:24:14 +0000 (19:24 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 14 Sep 2000 19:24:14 +0000 (19:24 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@326 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/common/tgttrans.c
src/common/tgttrans.h

index d88f6d24487d5ba86c9686d142eb56b9e4af7b0b..ba4e3f5e0058d3d2271395edf980ab5d61746848 100644 (file)
@@ -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;
index b9ede0a8963a647208cdf21113ce09417db62195..fc5f8aebad1054c80f6c37758e41bdfac9067369 100644 (file)
@@ -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.