Exemplo n.º 1
0
int main()
    {
    void prntMsg();
    
    prntMsg();
    
    getch();
    return 0;
}
Exemplo n.º 2
0
void warning( char *text )
{
    prntMsg("Warning", text);
}
Exemplo n.º 3
0
void error( char *text )
{
    prntMsg("Error", text);
    exit(1);
}