home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
progm
/
cbase.zip
/
CBASE10B.ZIP
/
CBASE.ZIP
/
CBRECFIR.C
< prev
next >
Wrap
Text File
|
1989-11-08
|
2KB
|
75 lines
/* Copyright (c) 1989 Citadel */
/* All Rights Reserved */
/* #ident "cbrecfir.c 1.2 - 89/11/08" */
#include <errno.h>
#include <lseq.h>
#include "cbase_.h"
/*man---------------------------------------------------------------------------
NAME
cbrecfirst - first cbase record
SYNOPSIS
#include <cbase.h>
int cbrecfirst(cbp)
cbase_t *cbp;
DESCRIPTION
The cbrecfirst function positions the record cursor of cbase cbp
on the first record.
cbrecfirst will fail if one or more of the following is true:
[EINVAL] cbp is not a valid cbase pointer.
[CBELOCK] cbp is not locked.
[CBENOPEN] cbp is not open.
[CBENREC] cbp is empty.
SEE ALSO
cbreccnt, cbreclast, cbrecnext, cbrecprev.
DIAGNOSTICS
Upon successful completion, a value of 0 is returned. Otherwise,
a value of -1 is returned, and errno set to indicate the error.
------------------------------------------------------------------------------*/
int cbrecfirst(cbp)
cbase_t *cbp;
{
/* validate arguments */
if (!cb_valid(cbp)) {
errno = EINVAL;
return -1;
}
/* check if not open */
if (!(cbp->flags & CBOPEN)) {
errno = CBENOPEN;
return -1;
}
/* check if not locked */
if (!(cbp->flags & CBLOCKS)) {
errno = CBELOCK;
return -1;
}
/* check if cbp is empty */
if (lsreccnt(cbp->lsp) == 0) {
errno = CBENREC;
return -1;
}
/* set cursor to first record */
if (lsfirst(cbp->lsp) == -1) {
CBEPRINT;
return -1;
}
errno = 0;
return 0;
}