home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / cbase.zip / CBASE10B.ZIP / CBASE.ZIP / CBRECFIR.C < prev    next >
Text File  |  1989-11-08  |  2KB  |  75 lines

  1. /*    Copyright (c) 1989 Citadel    */
  2. /*       All Rights Reserved        */
  3.  
  4. /* #ident    "cbrecfir.c    1.2 - 89/11/08" */
  5.  
  6. #include <errno.h>
  7. #include <lseq.h>
  8. #include "cbase_.h"
  9.  
  10. /*man---------------------------------------------------------------------------
  11. NAME
  12.      cbrecfirst - first cbase record
  13.  
  14. SYNOPSIS
  15.      #include <cbase.h>
  16.  
  17.      int cbrecfirst(cbp)
  18.      cbase_t *cbp;
  19.  
  20. DESCRIPTION
  21.      The cbrecfirst function positions the record cursor of cbase cbp
  22.      on the first record.
  23.  
  24.      cbrecfirst will fail if one or more of the following is true:
  25.  
  26.      [EINVAL]       cbp is not a valid cbase pointer.
  27.      [CBELOCK]      cbp is not locked.
  28.      [CBENOPEN]     cbp is not open.
  29.      [CBENREC]      cbp is empty.
  30.  
  31. SEE ALSO
  32.      cbreccnt, cbreclast, cbrecnext, cbrecprev.
  33.  
  34. DIAGNOSTICS
  35.      Upon successful completion, a value of 0 is returned.  Otherwise,
  36.      a value of -1 is returned, and errno set to indicate the error.
  37.  
  38. ------------------------------------------------------------------------------*/
  39. int cbrecfirst(cbp)
  40. cbase_t *cbp;
  41. {
  42.     /* validate arguments */
  43.     if (!cb_valid(cbp)) {
  44.         errno = EINVAL;
  45.         return -1;
  46.     }
  47.  
  48.     /* check if not open */
  49.     if (!(cbp->flags & CBOPEN)) {
  50.         errno = CBENOPEN;
  51.         return -1;
  52.     }
  53.  
  54.     /* check if not locked */
  55.     if (!(cbp->flags & CBLOCKS)) {
  56.         errno = CBELOCK;
  57.         return -1;
  58.     }
  59.  
  60.     /* check if cbp is empty */
  61.     if (lsreccnt(cbp->lsp) == 0) {
  62.         errno = CBENREC;
  63.         return -1;
  64.     }
  65.  
  66.     /* set cursor to first record */
  67.     if (lsfirst(cbp->lsp) == -1) {
  68.         CBEPRINT;
  69.         return -1;
  70.     }
  71.  
  72.     errno = 0;
  73.     return 0;
  74. }
  75.