📄 bchkspc2.c
字号:
/* *---------------------------------------------------------------------- * 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. * *---------------------------------------------------------------------- *//* * @(#)bchkspc2.c (libtk) * * Address check */#include <basic.h>#include <sys/util.h>#include <tk/syslib.h>/* * Address space check (TC string) * Checks to see that the memory area from str through to * either TNULL or the max character is valid. * If max = 0, the number of characters (max) is ignored. * If the memory area is valid, the value returned is either * the number of characters or the max value (through to the * max character with max !=0 character and no TNULL). * If the memory area is not valid, the error code is returned.*/EXPORT ER CheckStrSpaceR( TC *str, W max ){ return ChkSpaceTstrR(str, max);}EXPORT ER CheckStrSpaceRW( TC *str, W max ){ return ChkSpaceTstrRW(str, max);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -