home *** CD-ROM | disk | FTP | other *** search
- /*
- * (c) Copyright 1992 by Panagiotis Tsirigotis
- * All rights reserved. The file named COPYRIGHT specifies the terms
- * and conditions for redistribution.
- */
-
- static char RCSid[] = "$Id: tietest.c,v 7.1 1992/06/01 21:38:57 panos Exp $" ;
-
- #include "sio.h"
- #include <stdio.h>
-
- main()
- {
- char *s ;
-
- Stie( 0, 1 ) ;
- Sprint( 1, "Enter command --> " ) ;
- s = Srdline( 0 ) ;
- Sprint( 1, "Received command: %s\n", s ) ;
- Suntie( 0 ) ;
- Sprint( 1, "Enter command --> " ) ;
- s = Srdline( 0 ) ;
- Sprint( 1, "Received command: %s\n", s ) ;
- exit( 0 ) ;
- }
-