mirror of git://vps1.g8bpq.net/linbpq
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
390 B
24 lines
390 B
#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;
|
|
} |