[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
USAGE
   signed int scddsize(
           signed int handle,
           signed long *recsused );

PROTOTYPE IN
   sc_base.h

DESCRIPTION
   scddsize gets the number of records recsused in the data file. This
   number will include all records inactive as well as active.

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

   void main()
   {
     int dbf;
     long recsused;
     scdinit(20,0);
     if (scddopenx(&dbf,"TOC.DBF",0) == SC_SUCCESS) {
       scddsize(dbf,&recsused);
       printf("%ld",recsused);
       scddclose(dbf);
     }
     scdterm();
   }

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