Tasks related to generating output
This module provides a set of functions that transform character
values and character string values into C or Pascal literals.
The module does not have generic parameters.
It is used by writing
$/Output/OutStr.fw
in a .specs file.
The module exports the following functions:
void C_outstr (FILE *fs, char *s)
- Translates
s into a C string literal
and outputs it on file fs .
void C_outchar (FILE *fs, char *s)
- Translates
s into a C character literal
and outputs it on file fs .
void P_outstr(FILE *fs, char *s)
- Translates
s into a Pascal string literal
and outputs it on file fs .
void outstr (FILE *fs, char *s)
- Outputs
s without translation on file fs .
|