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

📄 btgetk.cpp

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

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

#include <blkio.h>
#include <errno.h>
/*#include <string.h>*/

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

/*man---------------------------------------------------------------------------
NAME
     btgetk - read current btree key

SYNOPSIS
     #include <btree.h>

     int btgetk(btp, buf)
     btree_t *btp;
     void *buf;

DESCRIPTION
     The btgetk function reads the key from the current cursor
     position in btree btp into buf.  buf must point to a storage area
     as large as the key size for btp.

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

     [EINVAL]       btp is not a valid btree pointer.
     [EINVAL]       buf is the NULL pointer.
     [BTELOCK]      btp is not read locked.
     [BTENKEY]      The cursor is null.
     [BTENOPEN]     btp is not open.

SEE ALSO
     btcursor, btkeysize, btsearch.

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 btgetk(btree_t *btp, void *buf)
{
	/* validate arguments */
	if (!bt_valid(btp) || buf == NULL) {
		errno = EINVAL;
		return -1;
	}

	/* check if not open */
	if (!(btp->flags & BTOPEN)) {
		errno = EINVAL;
		return -1;
	}

	/* check locks */
	if (!(btp->flags & BTRDLCK)) {
		errno = BTELOCK;
		return -1;
	}

	/* initialize return value */
	memset(buf, 0, btp->bthdr.keysize);

	/* read key value */
	if (btp->cbtpos.node == NIL) {
		errno = BTENKEY;
		return -1;
	}
	memcpy(buf, bt_kykeyp(btp, btp->cbtnp, btp->cbtpos.key), btp->bthdr.keysize);

	errno = 0;
	return 0;
}

⌨️ 快捷键说明

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