Test_Generator

[ Top ] [ ROBODoc ] [ Modules ]

FUNCTION

The generator for test output.

The purpose of this generator is to create output that is easily scanable by the system test scripts. This to make it easier to write tests for ROBODoc.

This generator produces output in utf-8 encoding.

This generator is experimental.


RB_TEST_Generate_Char

[ Top ] [ Generator ] [ Functions ]

NAME

RB_TEST_Generate_Char

SYNOPSIS

 *   void RB_TEST_Generate_Char( FILE * dest_doc, int c )

FUNCTION

Switchboard to RB_TEST_Generate_Char

SOURCE

void RB_TEST_Generate_Char(
    FILE *dest_doc,
    int c )
{
    switch ( c )
    {
    default:
        RB_FputcLatin1ToUtf8( dest_doc, c );
        break;
    }
}