linbpq/PG/Loop.c

24 lines
390 B
C
Raw Normal View History

2023-07-29 07:23:11 +01:00
#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;
2023-06-21 08:21:04 +01:00
}