bchkspc3.c

来自「嵌入式操作系统T-Kernel 完整代码」· C语言 代码 · 共 43 行

C
43
字号
/* *---------------------------------------------------------------------- *    T-Kernel * *    Copyright (C) 2004 by Ken Sakamura. All rights reserved. *    T-Kernel is distributed under the T-License. *---------------------------------------------------------------------- * *    Version:   1.01.00 *    Released by T-Engine Forum(http://www.t-engine.org) at 2004/6/28. * *---------------------------------------------------------------------- *//* *	@(#)bchkspc3.c (libtk) * *	Address check  */#include <basic.h>#include <sys/util.h>#include <tk/syslib.h>/* * Check address space (B string) *	Checks to see that the memory area from str through to *	either '\0' or the max byte is valid. *	If max = 0, the number of bytes (max) is ignored. *	If the memory area is valid, the value returned is either *	the number of bytes or the max value (through to the max *	byte with max !=0 and no '\0'). *	If the memory area is not valid, the error code is returned.  */EXPORT ER CheckBStrSpaceR( UB *str, W max ){	return ChkSpaceBstrR(str, max);}EXPORT ER CheckBStrSpaceRW( UB *str, W max ){	return ChkSpaceBstrRW(str, max);}

⌨️ 快捷键说明

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