⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lssetbuf.cpp

📁 CBASE v1.01 采用Borland公司TC++编写的数据库管理源程序库
💻 CPP
字号:
/*	Copyright (c) 1989 Citadel	*/
/*	   All Rights Reserved    	*/

/* #ident	"@(#)lssetbuf.c	1.4 - 90/06/20" */

/* ansi headers */
#include <errno.h>

/* library headers */
#include <blkio.h>

/* local headers */
#include "lseq_.h"

/*man---------------------------------------------------------------------------
NAME
     lssetbuf - assign buffering to an lseq

SYNOPSIS
     #include <lseq.h>

     int lssetbuf(lsp, buf)
     lseq_t *lsp;
     void *buf;

DESCRIPTION
     The lssetbuf function causes the storage area pointed to by buf
     to be used by the lseq associated with lseq pointer lsp instead
     of an automatically allocated buffer area.  If buf is the NULL
     pointer, lsp will be completely unbuffered.

     The size of the storage area needed can be obtained using the
     LSBUFSIZE() macro:

          char buf[LSBUFSIZE(RECSIZE, LSBUFCNT)];
          lssetbuf(lsp, (void *)buf);

     where RECSIZE is the size of the records in the lseq and LSBUFCNT
     is the default number of records buffered when an lseq is opened.
     LSBUFCNT is defined in <lseq.h>.  If the number of records
     buffered has been changed using lssetvbuf, then that number
     should be used in place of LSBUFCNT.

     lssetbuf may be called at any time after opening the lseq,
     before and after it is read or written; the buffers are flushed
     before installing the new buffer area.

     lssetbuf will fail if one or more of the following is true:

     [EINVAL]       lsp is not a valid lseq pointer.
     [LSENBUF]      buf is not the NULL pointer and lsp
                    is not buffered.
     [LSENOPEN]     lsp is not open.

SEE ALSO
     lssetvbuf, lssync.

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 lssetbuf(lseq_t *lsp, void *buf)
{
	/* validate arguments */
	if (!ls_valid(lsp)) {
		errno = EINVAL;
		return -1;
	}

	/* check if not open */
	if (!(lsp->flags & LSOPEN)) {
		errno = LSENOPEN;
		return -1;
	}

	/* assign buffering */
	if (bsetbuf(lsp->bp, buf) == -1) {
		if (errno == BENBUF) errno = LSENBUF;
		LSEPRINT;
		return -1;
	}

	errno = 0;
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -