home *** CD-ROM | disk | FTP | other *** search
- /******************************************
- * CREADW.C *
- * Copyright TimeSlice, Inc. 1985, 86, 87. *
- ******************************************/
-
- #include <ts.h>
-
- /********
- * CREADW( CN , BUF , NBYTES )
- * Does just as cread(), but keeps trying until it suceeds. It does not
- * return any value.
- ********/
- void _creadw( cn , status, buf , nbytes )
- CHAN *cn;
- int status;
- char *buf;
- int nbytes;
- {
- while( ! _cread( cn , status, buf , nbytes ) )
- guc();
- }
-