]> git.saurik.com Git - apple/bootx.git/blame - bootx.tproj/include.subproj/libclite.h
BootX-81.tar.gz
[apple/bootx.git] / bootx.tproj / include.subproj / libclite.h
CommitLineData
04fee52e
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
8be739c0
A
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
04fee52e 11 *
8be739c0
A
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
04fee52e
A
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
8be739c0
A
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
04fee52e
A
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22/*
23 * libclite.h - Headers for the LibC Lite Functions
24 *
25 * Ported from i386's libsa and libsaio
26 *
366defd1 27 * Copyright (c) 1998-2002 Apple Computer, Inc.
04fee52e
A
28 *
29 * DRI: Josh de Cesare
30 */
31
32#ifndef _BOOTX_LIBCLITE_H_
33#define _BOOTX_LIBCLITE_H_
34
366defd1 35#include <sys/types.h>
04fee52e
A
36
37#include <stdarg.h>
38#include <stddef.h>
39
40// ci_io.c
b1faa321 41extern int putchar(int ch);
8be739c0 42extern int puts(const char *str);
04fee52e
A
43
44// prf.c
8be739c0 45extern void prf(const char *fmt, unsigned int *adx, int (*putfn_p)(int ch),
04fee52e
A
46 void *putfn_arg);
47
48// printf.c
49extern int printf(const char *format, ...);
873b6fa6
A
50#if DEBUG
51extern unsigned OSBacktrace_ppc(void **bt, unsigned maxAddrs);
52extern void dump_backtrace(char *ctx, int id); // ctx and id optional
53#endif // DEBUG
04fee52e
A
54
55// sprintf.c
56extern int sprintf(char *str, const char *fmt, ...);
57
58// string.c
59extern int strlen(const char *s);
60extern int strcmp(const char *s1, const char *s2);
61extern int strncmp(const char *s1, const char *s2, size_t len);
62extern char *strcpy(char *s1, const char *s2);
63extern char *strncpy(char *s1, const char *s2, size_t n);
04fee52e
A
64extern char *strncat(char *s1, const char *s2, size_t n);
65extern char *strcat(char *s1, const char *s2);
66extern int strncasecmp(const char *s1, const char *s2, size_t len);
67
68// strtol.c
69extern int isupper(char c);
70extern int isalpha(char c);
71extern int isspace(char c);
72extern int isdigit(char c);
73extern char tolower(char c);
74extern long strtol(const char *nptr, char **endptr, register int base);
8be739c0 75extern u_quad_t strtouq(const char *nptr, char **endptr, register int base);
04fee52e
A
76
77// zalloc.c
78extern void malloc_init(char *start, int size);
79extern void malloc_error_init(void (*error_fn)());
80extern void *malloc(size_t size);
81extern void free(void *pointer);
82extern void *realloc(void *start, size_t newsize);
83
84// mem.c
85extern void *memcpy(void *dst, const void *src, size_t len);
86extern void *memset(void *dst, int ch, size_t len);
8be739c0 87extern int memcmp(const void *b1, const void *b2, size_t len);
b1faa321 88extern void bcopy(const void *src, void *dst, size_t len);
04fee52e
A
89extern void bzero(void *dst, int len);
90
91// bsearch.c
92extern void *bsearch(const void *key, const void *base, size_t nmemb,
93 size_t size, int (*compar)(const void *, const void *));
94
95// bswap.c
96extern int16_t bswap16(int16_t data);
97extern int32_t bswap32(int32_t data);
98
99#endif /* ! _BOOTX_LIBCLITE_H_ */