[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
USAGE
   signed int scddrclear(
           signed int handle );

PROTOTYPE IN
   sc_base.h

DESCRIPTION
   scddrclear clears the record buffer. The buffer will be written with
   spaces (" ") NOT zeros (0).

EXAMPLE
   #include <stdio.h>
   #include <softc.h>
   #include <sc_base.h>

   void main()
   {
     int dbf;
     char name[65];

     scdinit(20,0);
     if (scddopenx(&dbf,"TOC.DBF",0) == SC_SUCCESS) {
       scddfput(dbf,0,"Now is the time for all...");
       scddrclear(dbf);
       scddfget(dbf,0,name);
       puts(name);
     }
     scdterm();
   }

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson