home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / cbase.zip / CBASE10B.ZIP / LSEQ10B.ZIP / LSPREV.C < prev    next >
Text File  |  1989-10-31  |  2KB  |  81 lines

  1. /*    Copyright (c) 1989 Citadel    */
  2. /*       All Rights Reserved        */
  3.  
  4. /* #ident    "lsprev.c    1.2 - 89/10/31" */
  5.  
  6. #include <errno.h>
  7. #include "lseq_.h"
  8.  
  9. /*man---------------------------------------------------------------------------
  10. NAME
  11.      lsprev - previous lseq record
  12.  
  13. SYNOPSIS
  14.      #include <lseq.h>
  15.  
  16.      int lsprev(lsp)
  17.      lseq_t *lsp;
  18.  
  19. DESCRIPTION
  20.      The lsprev function retreats the cursor of lseq lsp to the
  21.      previous record.  If the cursor is currently null, it will be
  22.      moved to the last record.  If the cursor is currently on the last
  23.      record, it will be moved to null.  If lsp is empty, the cursor
  24.      will remain set to null.
  25.  
  26.      lsprev will fail if one or more of the following is true:
  27.  
  28.      [EINVAL]       lsp is not a valid lseq pointer.
  29.      [LSELOCK]      lsp is not locked.
  30.      [LSENOPEN]     lsp is not open.
  31.  
  32. SEE ALSO
  33.      lscursor, lsfirst, lslast, lsnext.
  34.  
  35. DIAGNOSTICS
  36.      Upon successful completion, a value of 0 is returned.  Otherwise,
  37.      a value of -1 is returned, and errno set to indicate the error.
  38.  
  39. ------------------------------------------------------------------------------*/
  40. int lsprev(lsp)
  41. lseq_t *lsp;
  42. {
  43.     /* validate arguments */
  44.     if (!ls_valid(lsp)) {
  45.         errno = EINVAL;
  46.         return -1;
  47.     }
  48.  
  49.     /* check if not open */
  50.     if (!(lsp->flags & LSOPEN)) {
  51.         errno = LSENOPEN;
  52.         return -1;
  53.     }
  54.  
  55.     /* check if not locked */
  56.     if (!(lsp->flags & LSLOCKS)) {
  57.         errno = LSELOCK;
  58.         return -1;
  59.     }
  60.  
  61.     /* move cursor */
  62.     if (lsp->clspos == 0) {
  63.         lsp->clspos = lsp->lshdr.last;
  64.     } else {
  65.         lsp->clspos = lsp->clsrp->prev;
  66.     }
  67.  
  68.     /* read in new current record */
  69.     if (lsp->clspos == 0) {
  70.         ls_rcinit(lsp, lsp->clsrp);
  71.     } else {
  72.         if (ls_rcget(lsp, lsp->clspos, lsp->clsrp) == -1) {
  73.             LSEPRINT;
  74.             return -1;
  75.         }
  76.     }
  77.  
  78.     errno = 0;
  79.     return 0;
  80. }
  81.