Mario Kart 64
Loading...
Searching...
No Matches
bstring.h
Go to the documentation of this file.
1#ifndef __BSTRING_H__
2#define __BSTRING_H__
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7/*
8 * bstring(3C) -- byte string operations
9 *
10 * Copyright 1990, Silicon Graphics, Inc.
11 * All Rights Reserved.
12 *
13 * This is UNPUBLISHED PROPRIETARY SOURCE CODE of Silicon Graphics, Inc.;
14 * the contents of this file may not be disclosed to third parties, copied or
15 * duplicated in any form, in whole or in part, without the prior written
16 * permission of Silicon Graphics, Inc.
17 *
18 * RESTRICTED RIGHTS LEGEND:
19 * Use, duplication or disclosure by the Government is subject to restrictions
20 * as set forth in subdivision (c)(1)(ii) of the Rights in Technical Data
21 * and Computer Software clause at DFARS 252.227-7013, and/or in similar or
22 * successor clauses in the FAR, DOD or NASA FAR Supplement. Unpublished -
23 * rights reserved under the Copyright Laws of the United States.
24 */
25
26// Causes issues when using m2ctx, not really necessary for our purposes
27// #ident "$Revision: 1.4 $"
28
29extern void bcopy(const void*, void*, size_t);
30extern int bcmp(const void*, const void*, int);
31extern void bzero(void*, size_t);
32extern void blkclr(void*, int);
33
34#ifdef __cplusplus
35}
36#endif
37#endif /* !__BSTRING_H__ */
int bcmp(const void *, const void *, int)
void blkclr(void *, int)
void bcopy(const void *, void *, size_t)
void bzero(void *, size_t)