Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Trunk/i386/libsa/libsa.h

1/*
2 * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved.
3 *
4 *
5 * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights
6 * Reserved. This file contains Original Code and/or Modifications of
7 * Original Code as defined in and that are subject to the Apple Public
8 * Source License Version 2.0 (the "License"). You may not use this file
9 * except in compliance with the License. Please obtain a copy of the
10 * License at http://www.apple.com/publicsource and read it before using
11 * this file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
18 * License for the specific language governing rights and limitations
19 * under the License.
20 *
21 */
22
23#ifndef __BOOT_LIBSA_H
24#define __BOOT_LIBSA_H
25
26/* Exported API for standalone library */
27
28#include <mach-o/loader.h>
29#include <stdarg.h>
30#include <stddef.h>
31#include <stdbool.h>
32
33/*
34 * ctype stuff (aserebln)
35 */
36static inline int isupper(int c)
37{
38return (c >= 'A' && c <= 'Z');
39}
40
41static inline int islower(int c)
42{
43return (c >= 'a' && c <= 'z');
44}
45
46static inline int isalpha(int c)
47{
48return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'));
49}
50
51static inline int isascii(int c)
52{
53return ( (c >= 0x20) && (c < 0x7f) );
54}
55
56static inline int isspace(int c)
57{
58return (c == ' ' || c == '\t' || c == '\n' || c == '\12');
59}
60
61static inline int isdigit(int c)
62{
63return (c >= '0' && c <= '9');
64}
65
66static inline int isxdigit(int c)
67{
68return ((c >= '0' && c <= '9') || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'));
69}
70
71static inline int ispunct(int c)
72{
73return (c == '.' || c == '-');
74}
75
76/*
77 * string.c
78 */
79#ifndef bcopy
80extern void bcopy(const void * src, void * dst, size_t len);
81#endif
82
83#ifndef bzero
84extern void bzero(void * dst, size_t len);
85extern void __bzero(void * dst, size_t len);
86#endif
87
88extern void * memset(void * dst, int c, size_t n);
89extern void * memcpy(void * dst, const void * src, size_t len);
90extern int memcmp(const void * p1, const void * p2, size_t len);
91extern int strcmp(const char * s1, const char * s2);
92extern int strncmp(const char * s1, const char * s2, size_t n);
93extern char * strcpy(char * s1, const char * s2);
94extern char * strncpy(char * s1, const char * s2, size_t n);
95extern size_t strlcpy(char * s1, const char * s2, size_t n);
96extern char * strstr(const char *in, const char *str);
97extern int atoi(const char * str);
98extern int ptol(const char * str);
99extern size_t strlen(const char * str);
100extern char * strcat(char * s1, const char * s2);
101extern char * strncat(char * s1, const char * s2, size_t n);
102extern char * strdup(const char *s1);
103
104#if STRNCASECMP
105extern int strncasecmp(const char *s1, const char *s2, size_t n);
106#endif
107
108extern char * strchr(const char *str, int c);
109extern char * strbreak(const char *str, char **next, long *len);
110
111extern uint8_t checksum8( void * start, unsigned int length );
112
113/*
114 * error.c
115 */
116extern int errno;
117extern char * strerror(int errnum);
118
119/*
120 * strtol.c
121 */
122extern long strtol(const char * nptr, char ** endptr, int base);
123extern unsigned long strtoul(const char * nptr, char ** endptr, int base);
124extern unsigned long long strtouq(const char *nptr, char ** endptr, int base);
125
126/*
127 * prf.c
128 */
129extern void prf(const char * fmt, va_list ap, int (*putfn_p)(), void * putfn_arg);
130
131/*
132 * printf.c
133 */
134extern int sprintf(char *s, const char * format, ...);
135extern int slvprintf(char * buffer, int len, const char * fmt, va_list arg);
136
137/*
138 * zalloc.c
139 */
140#define malloc(size) safe_malloc(size, __FILE__, __LINE__)
141extern void malloc_init(char * start, int size, int nodes, void (*malloc_error)(char *, size_t, const char *, int));
142extern void * safe_malloc(size_t size,const char *file, int line);
143extern void free(void * start);
144extern void * realloc(void * ptr, size_t size);
145
146/*
147 * getsegbyname.c
148 */
149extern struct segment_command * getsegbynamefromheader(struct mach_header * mhp, char * segname);
150
151#endif /* !__BOOT_LIBSA_H */
152

Archive Download this file

Revision: 2045