24 lines
367 B
C
24 lines
367 B
C
|
#include <stdio.h>
|
||
|
#include <windows.h>
|
||
|
|
||
|
/*
|
||
|
* TST_PG.C
|
||
|
*
|
||
|
* Little test program of "PG" command for FBB BBS software.
|
||
|
*
|
||
|
* (C) F6FBB 1991.
|
||
|
*
|
||
|
* FBB software 5.14 and up.
|
||
|
*
|
||
|
*
|
||
|
* This program echoes to the user what he types
|
||
|
* or executes a BBS command preceded by "CMD"
|
||
|
* until "BYE" is received
|
||
|
*/
|
||
|
|
||
|
|
||
|
main(int argc, char **argv)
|
||
|
{
|
||
|
Sleep(10000);
|
||
|
return 0;
|
||
|
}
|