#ifndef __BSTRING_H__1#define __BSTRING_H__2#ifdef __cplusplus3extern "C" {4#endif56/*7* bstring(3C) -- byte string operations8*9* Copyright 1990, Silicon Graphics, Inc.10* All Rights Reserved.11*12* This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;13* the contents of this file may not be disclosed to third parties, copied or14* duplicated in any form, in whole or in part, without the prior written15* permission of Silicon Graphics, Inc.16*17* RESTRICTED RIGHTS LEGEND:18* Use, duplication or disclosure by the Government is subject to restrictions19* as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data20* and Computer Software clause at DFARS 252.227-7013, and/or in similar or21* successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -22* rights reserved under the Copyright Laws of the United States.23*/2425#ident "$Revision: 1.4 $"2627extern void bcopy(const void *, void *, size_t);28extern int bcmp(const void *, const void *, int);29extern void bzero(void *, size_t);30extern void blkclr(void *, int);3132#ifdef __cplusplus33}34#endif35#endif /* !__BSTRING_H__ */363738