#include "debug.h"
#include <ctype.h>
#include <stdlib.h>
#include "opencbm.h"
Go to the source code of this file.
Defines | |
| #define | DBG_USERMODE |
| #define | DBG_PROGNAME "OPENCBM.DLL" |
| #define | DLL |
| mark: We are building the DLL */ | |
Functions | |
| char CBMAPIDECL | cbm_petscii2ascii_c (char Character) |
| Convert a PETSCII character to ASCII. | |
| char CBMAPIDECL | cbm_ascii2petscii_c (char Character) |
| Convert an ASCII character to PETSCII. | |
| char *CBMAPIDECL | cbm_petscii2ascii (char *Str) |
| Convert an null-termined PETSCII string to ASCII. | |
| char *CBMAPIDECL | cbm_ascii2petscii (char *Str) |
| Convert an null-termined ASCII string to PETSCII. | |
**************************************************************
Definition in file petscii.c.
|
|
The name of the executable |
|
|
Mark: We are in user-space (for debug.h) |
|
|
Convert an null-termined ASCII string to PETSCII. This function converts a string in ASCII to PETSCII.
Definition at line 161 of file petscii.c. References cbm_ascii2petscii_c(). |
|
|
Convert an ASCII character to PETSCII. This function converts a character in ASCII to PETSCII.
Definition at line 106 of file petscii.c. Referenced by cbm_ascii2petscii(). |
|
|
Convert an null-termined PETSCII string to ASCII. This function converts a string in PETSCII to ASCII.
Definition at line 137 of file petscii.c. References cbm_petscii2ascii_c(). |
|
|
Convert a PETSCII character to ASCII. This function converts a character in PETSCII to ASCII.
Definition at line 65 of file petscii.c. Referenced by cbm_petscii2ascii(). |
1.4.2