#ifndef __b_h__ #define __b_h__ #include "type.h" int bCopyLong(const U8 *l,U8 *r,U32 cnt); int bCopy(const U8 *l,U8 *r,U32 cnt); int bCmp(const U8 *l,const U8 *r,U32 cnt); int bFill(U8 *l,U8 c,U32 cnt); inline int bClear(U8 *l,U32 cnt) { return bFill(l,0,cnt); }; #endif /* __b_h__ */