#include "extern.h"

rscont()   /* send control sentence to RS232C    *ssent->RS232C  */

        {
	 int ch;
         if ( moniflg ) printf("%s\n",ssent);
         ch = COM_CHAR;
         rsbwrite(ch);
         for ( i = 0; i <=255 ; i++ )
                {ch = *(ssent + i);
                 if (ch == NULL) break;
                 rsbwrite(ch);
                 }
         *(ssent) = NULL;
         ch = 0x0d;
         rsbwrite(ch);
		dspjyo();
	return(0);
        }
