1
0
mirror of https://github.com/cc65/cc65.git synced 2024-11-19 06:31:31 +00:00

Export/rename init function

git-svn-id: svn://svn.cc65.org/cc65/trunk@326 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2000-09-14 19:24:14 +00:00
parent 2e21552871
commit 2ff9f2fc1d
2 changed files with 5 additions and 2 deletions

View File

@ -96,8 +96,8 @@ static const unsigned char* Tab = 0;
void InitTarget (void) void TgtTranslateInit (void)
/* Initialize the target and the translation tables */ /* Initialize the translation tables */
{ {
switch (Target) { switch (Target) {
case TGT_NONE: break; case TGT_NONE: break;

View File

@ -44,6 +44,9 @@
void TgtTranslateInit (void);
/* Initialize the translation tables */
int TgtTranslateChar (int C); int TgtTranslateChar (int C);
/* Translate one character from the source character set into the target /* Translate one character from the source character set into the target
* system character set. * system character set.