author | Sam Lantinga <slouken@libsdl.org> |
Wed, 27 Aug 2008 15:10:03 +0000 | |
changeset 2735 | 204be4fc2726 |
parent 2707 | 6259afb046c5 |
child 2859 | 99210400e8b9 |
permissions | -rw-r--r-- |
1357 | 1 |
/* |
2 |
SDL - Simple DirectMedia Layer |
|
3 |
Copyright (C) 1997-2006 Sam Lantinga |
|
4 |
||
5 |
This library is free software; you can redistribute it and/or |
|
6 |
modify it under the terms of the GNU Lesser General Public |
|
7 |
License as published by the Free Software Foundation; either |
|
8 |
version 2.1 of the License, or (at your option) any later version. |
|
9 |
||
10 |
This library is distributed in the hope that it will be useful, |
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 |
Lesser General Public License for more details. |
|
14 |
||
15 |
You should have received a copy of the GNU Lesser General Public |
|
16 |
License along with this library; if not, write to the Free Software |
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
|
18 |
||
19 |
Sam Lantinga |
|
20 |
slouken@libsdl.org |
|
21 |
*/ |
|
22 |
||
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
23 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
24 |
* \file SDL_stdinc.h |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
25 |
* |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
26 |
* This is a general header that includes C language support |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
27 |
*/ |
1357 | 28 |
|
29 |
#ifndef _SDL_stdinc_h |
|
30 |
#define _SDL_stdinc_h |
|
31 |
||
32 |
#include "SDL_config.h" |
|
33 |
||
34 |
||
1626 | 35 |
#ifdef HAVE_SYS_TYPES_H |
1357 | 36 |
#include <sys/types.h> |
37 |
#endif |
|
1626 | 38 |
#ifdef HAVE_STDIO_H |
1357 | 39 |
#include <stdio.h> |
40 |
#endif |
|
1626 | 41 |
#if defined(STDC_HEADERS) |
1357 | 42 |
# include <stdlib.h> |
43 |
# include <stddef.h> |
|
44 |
# include <stdarg.h> |
|
45 |
#else |
|
1626 | 46 |
# if defined(HAVE_STDLIB_H) |
47 |
# include <stdlib.h> |
|
48 |
# elif defined(HAVE_MALLOC_H) |
|
49 |
# include <malloc.h> |
|
1357 | 50 |
# endif |
1626 | 51 |
# if defined(HAVE_STDDEF_H) |
52 |
# include <stddef.h> |
|
1422
d2ee8da60262
Added pre-configured versions of SDL_config.h for various platforms
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
53 |
# endif |
1626 | 54 |
# if defined(HAVE_STDARG_H) |
55 |
# include <stdarg.h> |
|
1357 | 56 |
# endif |
57 |
#endif |
|
1626 | 58 |
#ifdef HAVE_STRING_H |
59 |
# if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H) |
|
60 |
# include <memory.h> |
|
1357 | 61 |
# endif |
62 |
# include <string.h> |
|
63 |
#endif |
|
1626 | 64 |
#ifdef HAVE_STRINGS_H |
1357 | 65 |
# include <strings.h> |
66 |
#endif |
|
1626 | 67 |
#if defined(HAVE_INTTYPES_H) |
1357 | 68 |
# include <inttypes.h> |
1626 | 69 |
#elif defined(HAVE_STDINT_H) |
1357 | 70 |
# include <stdint.h> |
71 |
#endif |
|
1626 | 72 |
#ifdef HAVE_CTYPE_H |
1357 | 73 |
# include <ctype.h> |
74 |
#endif |
|
1626 | 75 |
#ifdef HAVE_ICONV_H |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
76 |
# include <iconv.h> |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
77 |
#endif |
1357 | 78 |
|
79 |
/* The number of elements in an array */ |
|
80 |
#define SDL_arraysize(array) (sizeof(array)/sizeof(array[0])) |
|
81 |
#define SDL_TABLESIZE(table) SDL_arraysize(table) |
|
82 |
||
83 |
/* Basic data types */ |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
84 |
typedef enum SDL_bool |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
85 |
{ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
86 |
SDL_FALSE = 0, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
87 |
SDL_TRUE = 1 |
1357 | 88 |
} SDL_bool; |
89 |
||
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
90 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
91 |
* \typedef Sint8 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
92 |
* \brief A signed 8-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
93 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
94 |
typedef int8_t Sint8; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
95 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
96 |
* \typedef Uint8 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
97 |
* \brief An unsigned 8-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
98 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
99 |
typedef uint8_t Uint8; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
100 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
101 |
* \typedef Sint16 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
102 |
* \brief A signed 16-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
103 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
104 |
typedef int16_t Sint16; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
105 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
106 |
* \typedef Uint16 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
107 |
* \brief An unsigned 16-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
108 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
109 |
typedef uint16_t Uint16; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
110 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
111 |
* \typedef Sint32 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
112 |
* \brief A signed 32-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
113 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
114 |
typedef int32_t Sint32; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
115 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
116 |
* \typedef Uint32 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
117 |
* \brief An unsigned 32-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
118 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
119 |
typedef uint32_t Uint32; |
1357 | 120 |
|
121 |
#ifdef SDL_HAS_64BIT_TYPE |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
122 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
123 |
* \typedef Sint64 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
124 |
* \brief A signed 64-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
125 |
* \warning On platforms without any sort of 64-bit datatype, this is equivalent to Sint32! |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
126 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
127 |
typedef int64_t Sint64; |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
128 |
/** |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
129 |
* \typedef Uint64 |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
130 |
* \brief An unsigned 64-bit integer type. |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
131 |
* \warning On platforms without any sort of 64-bit datatype, this is equivalent to Uint32! |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
132 |
*/ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
133 |
typedef uint64_t Uint64; |
1357 | 134 |
#else |
135 |
/* This is really just a hack to prevent the compiler from complaining */ |
|
2048 | 136 |
typedef Sint32 Sint64; |
137 |
typedef Uint32 Uint64; |
|
1357 | 138 |
#endif |
139 |
||
140 |
/* Make sure the types really have the right sizes */ |
|
141 |
#define SDL_COMPILE_TIME_ASSERT(name, x) \ |
|
142 |
typedef int SDL_dummy_ ## name[(x) * 2 - 1] |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
143 |
#ifndef DOXYGEN_SHOULD_IGNORE_THIS |
1357 | 144 |
SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1); |
145 |
SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1); |
|
146 |
SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2); |
|
147 |
SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2); |
|
148 |
SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4); |
|
149 |
SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4); |
|
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
150 |
#ifndef __NINTENDODS__ /* TODO: figure out why the following happens: |
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
151 |
include/SDL_stdinc.h:150: error: size of array 'SDL_dummy_uint64' is negative |
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
152 |
include/SDL_stdinc.h:151: error: size of array 'SDL_dummy_sint64' is negative */ |
2707
6259afb046c5
Reverted Holmes' changes, they should be on the iphone branch
Sam Lantinga <slouken@libsdl.org>
parents:
2706
diff
changeset
|
153 |
SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8); |
6259afb046c5
Reverted Holmes' changes, they should be on the iphone branch
Sam Lantinga <slouken@libsdl.org>
parents:
2706
diff
changeset
|
154 |
SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8); |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
155 |
#endif |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
156 |
#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ |
1357 | 157 |
|
158 |
/* Check to make sure enums are the size of ints, for structure packing. |
|
159 |
For both Watcom C/C++ and Borland C/C++ the compiler option that makes |
|
160 |
enums having the size of an int must be enabled. |
|
161 |
This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). |
|
162 |
*/ |
|
163 |
/* Enable enums always int in CodeWarrior (for MPW use "-enum int") */ |
|
164 |
#ifdef __MWERKS__ |
|
165 |
#pragma enumsalwaysint on |
|
166 |
#endif |
|
167 |
||
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
168 |
#ifndef DOXYGEN_SHOULD_IGNORE_THIS |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
169 |
#ifndef __NINTENDODS__ /* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
170 |
typedef enum |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
171 |
{ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
172 |
DUMMY_ENUM_VALUE |
1357 | 173 |
} SDL_DUMMY_ENUM; |
174 |
||
175 |
SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int)); |
|
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
176 |
#endif |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
177 |
#endif /* DOXYGEN_SHOULD_IGNORE_THIS */ |
1357 | 178 |
|
179 |
#include "begin_code.h" |
|
180 |
/* Set up for C function definitions, even when using C++ */ |
|
181 |
#ifdef __cplusplus |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
182 |
/* *INDENT-OFF* */ |
1357 | 183 |
extern "C" { |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
184 |
/* *INDENT-ON* */ |
1357 | 185 |
#endif |
186 |
||
1626 | 187 |
#ifdef HAVE_MALLOC |
1357 | 188 |
#define SDL_malloc malloc |
189 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
190 |
extern DECLSPEC void *SDLCALL SDL_malloc(size_t size); |
1357 | 191 |
#endif |
192 |
||
1626 | 193 |
#ifdef HAVE_CALLOC |
1357 | 194 |
#define SDL_calloc calloc |
195 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
196 |
extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size); |
1357 | 197 |
#endif |
198 |
||
1626 | 199 |
#ifdef HAVE_REALLOC |
1357 | 200 |
#define SDL_realloc realloc |
201 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
202 |
extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size); |
1357 | 203 |
#endif |
204 |
||
1626 | 205 |
#ifdef HAVE_FREE |
1357 | 206 |
#define SDL_free free |
207 |
#else |
|
208 |
extern DECLSPEC void SDLCALL SDL_free(void *mem); |
|
209 |
#endif |
|
210 |
||
1626 | 211 |
#if defined(HAVE_ALLOCA) && !defined(alloca) |
212 |
# if defined(HAVE_ALLOCA_H) |
|
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
213 |
# include <alloca.h> |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
214 |
# elif defined(__GNUC__) |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
215 |
# define alloca __builtin_alloca |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
216 |
# elif defined(_MSC_VER) |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
217 |
# include <malloc.h> |
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
218 |
# define alloca _alloca |
1769 | 219 |
# elif defined(__WATCOMC__) |
220 |
# include <malloc.h> |
|
2279
65bb3dd0b350
Merged revision 3458 from SDL 1.2, fixed Borland C alloca() prototype
Sam Lantinga <slouken@libsdl.org>
parents:
2157
diff
changeset
|
221 |
# elif defined(__BORLANDC__) |
65bb3dd0b350
Merged revision 3458 from SDL 1.2, fixed Borland C alloca() prototype
Sam Lantinga <slouken@libsdl.org>
parents:
2157
diff
changeset
|
222 |
# include <malloc.h> |
1870 | 223 |
# elif defined(__DMC__) |
224 |
# include <stdlib.h> |
|
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1381
diff
changeset
|
225 |
# elif defined(__AIX__) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
226 |
#pragma alloca |
1829
b98fd17b0b02
Fixed alloca declaration for MPW
Sam Lantinga <slouken@libsdl.org>
parents:
1769
diff
changeset
|
227 |
# elif defined(__MRC__) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
228 |
void *alloca(unsigned); |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
229 |
# else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
230 |
char *alloca(); |
1381
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
231 |
# endif |
8570e1f4b1f1
On FreeBSD, alloca is defined in stdlib.h
Sam Lantinga <slouken@libsdl.org>
parents:
1379
diff
changeset
|
232 |
#endif |
1626 | 233 |
#ifdef HAVE_ALLOCA |
2077
8bfba7ec379a
Merge r2918:2919 from 1.2 branch: alloca macro params in parentheses.
Ryan C. Gordon <icculus@icculus.org>
parents:
2048
diff
changeset
|
234 |
#define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count)) |
1357 | 235 |
#define SDL_stack_free(data) |
236 |
#else |
|
2077
8bfba7ec379a
Merge r2918:2919 from 1.2 branch: alloca macro params in parentheses.
Ryan C. Gordon <icculus@icculus.org>
parents:
2048
diff
changeset
|
237 |
#define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count)) |
1357 | 238 |
#define SDL_stack_free(data) SDL_free(data) |
239 |
#endif |
|
240 |
||
1626 | 241 |
#ifdef HAVE_GETENV |
1357 | 242 |
#define SDL_getenv getenv |
243 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
244 |
extern DECLSPEC char *SDLCALL SDL_getenv(const char *name); |
1357 | 245 |
#endif |
246 |
||
1626 | 247 |
#ifdef HAVE_PUTENV |
1357 | 248 |
#define SDL_putenv putenv |
249 |
#else |
|
250 |
extern DECLSPEC int SDLCALL SDL_putenv(const char *variable); |
|
251 |
#endif |
|
252 |
||
1626 | 253 |
#ifdef HAVE_QSORT |
1357 | 254 |
#define SDL_qsort qsort |
255 |
#else |
|
256 |
extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size, |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
257 |
int (*compare) (const void *, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
258 |
const void *)); |
1357 | 259 |
#endif |
260 |
||
1626 | 261 |
#ifdef HAVE_ABS |
1357 | 262 |
#define SDL_abs abs |
263 |
#else |
|
264 |
#define SDL_abs(X) ((X) < 0 ? -(X) : (X)) |
|
265 |
#endif |
|
266 |
||
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
267 |
#define SDL_min(x, y) (((x) < (y)) ? (x) : (y)) |
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
268 |
#define SDL_max(x, y) (((x) > (y)) ? (x) : (y)) |
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
269 |
|
1626 | 270 |
#ifdef HAVE_CTYPE_H |
1357 | 271 |
#define SDL_isdigit(X) isdigit(X) |
272 |
#define SDL_isspace(X) isspace(X) |
|
273 |
#define SDL_toupper(X) toupper(X) |
|
274 |
#define SDL_tolower(X) tolower(X) |
|
275 |
#else |
|
276 |
#define SDL_isdigit(X) (((X) >= '0') && ((X) <= '9')) |
|
277 |
#define SDL_isspace(X) (((X) == ' ') || ((X) == '\t') || ((X) == '\r') || ((X) == '\n')) |
|
278 |
#define SDL_toupper(X) (((X) >= 'a') && ((X) <= 'z') ? ('A'+((X)-'a')) : (X)) |
|
279 |
#define SDL_tolower(X) (((X) >= 'A') && ((X) <= 'Z') ? ('a'+((X)-'A')) : (X)) |
|
280 |
#endif |
|
281 |
||
1626 | 282 |
#ifdef HAVE_MEMSET |
1357 | 283 |
#define SDL_memset memset |
284 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
285 |
extern DECLSPEC void *SDLCALL SDL_memset(void *dst, int c, size_t len); |
1357 | 286 |
#endif |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
287 |
#define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x))) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
288 |
#define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x))) |
1357 | 289 |
|
2157 | 290 |
#if defined(__GNUC__) && defined(i386) |
1357 | 291 |
#define SDL_memset4(dst, val, len) \ |
292 |
do { \ |
|
293 |
int u0, u1, u2; \ |
|
294 |
__asm__ __volatile__ ( \ |
|
295 |
"cld\n\t" \ |
|
296 |
"rep ; stosl\n\t" \ |
|
297 |
: "=&D" (u0), "=&a" (u1), "=&c" (u2) \ |
|
298 |
: "0" (dst), "1" (val), "2" ((Uint32)(len)) \ |
|
299 |
: "memory" ); \ |
|
300 |
} while(0) |
|
301 |
#endif |
|
302 |
#ifndef SDL_memset4 |
|
303 |
#define SDL_memset4(dst, val, len) \ |
|
304 |
do { \ |
|
305 |
unsigned _count = (len); \ |
|
306 |
unsigned _n = (_count + 3) / 4; \ |
|
307 |
Uint32 *_p = (Uint32 *)(dst); \ |
|
308 |
Uint32 _val = (val); \ |
|
309 |
switch (_count % 4) { \ |
|
310 |
case 0: do { *_p++ = _val; \ |
|
311 |
case 3: *_p++ = _val; \ |
|
312 |
case 2: *_p++ = _val; \ |
|
313 |
case 1: *_p++ = _val; \ |
|
314 |
} while ( --_n ); \ |
|
315 |
} \ |
|
316 |
} while(0) |
|
317 |
#endif |
|
318 |
||
2111
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
319 |
/* We can count on memcpy existing on Mac OS X and being well-tuned. */ |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
320 |
#if defined(__MACH__) && defined(__APPLE__) |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
321 |
#define SDL_memcpy(dst, src, len) memcpy(dst, src, len) |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
322 |
#elif defined(__GNUC__) && defined(i386) |
1357 | 323 |
#define SDL_memcpy(dst, src, len) \ |
324 |
do { \ |
|
325 |
int u0, u1, u2; \ |
|
326 |
__asm__ __volatile__ ( \ |
|
327 |
"cld\n\t" \ |
|
328 |
"rep ; movsl\n\t" \ |
|
329 |
"testb $2,%b4\n\t" \ |
|
330 |
"je 1f\n\t" \ |
|
331 |
"movsw\n" \ |
|
332 |
"1:\ttestb $1,%b4\n\t" \ |
|
333 |
"je 2f\n\t" \ |
|
334 |
"movsb\n" \ |
|
335 |
"2:" \ |
|
336 |
: "=&c" (u0), "=&D" (u1), "=&S" (u2) \ |
|
337 |
: "0" ((unsigned)(len)/4), "q" (len), "1" (dst),"2" (src) \ |
|
338 |
: "memory" ); \ |
|
339 |
} while(0) |
|
340 |
#endif |
|
341 |
#ifndef SDL_memcpy |
|
1626 | 342 |
#ifdef HAVE_MEMCPY |
1357 | 343 |
#define SDL_memcpy memcpy |
1626 | 344 |
#elif defined(HAVE_BCOPY) |
1357 | 345 |
#define SDL_memcpy(d, s, n) bcopy((s), (d), (n)) |
346 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
347 |
extern DECLSPEC void *SDLCALL SDL_memcpy(void *dst, const void *src, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
348 |
size_t len); |
1357 | 349 |
#endif |
350 |
#endif |
|
351 |
||
2111
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
352 |
/* We can count on memcpy existing on Mac OS X and being well-tuned. */ |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
353 |
#if defined(__MACH__) && defined(__APPLE__) |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
354 |
#define SDL_memcpy4(dst, src, len) memcpy(dst, src, (len)*4) |
874162355be5
Merged r3037:3038 from branches/SDL-1.2: Mac OS X memcpy/memset selection.
Ryan C. Gordon <icculus@icculus.org>
parents:
2077
diff
changeset
|
355 |
#elif defined(__GNUC__) && defined(i386) |
1357 | 356 |
#define SDL_memcpy4(dst, src, len) \ |
357 |
do { \ |
|
358 |
int ecx, edi, esi; \ |
|
359 |
__asm__ __volatile__ ( \ |
|
360 |
"cld\n\t" \ |
|
361 |
"rep ; movsl" \ |
|
362 |
: "=&c" (ecx), "=&D" (edi), "=&S" (esi) \ |
|
363 |
: "0" ((unsigned)(len)), "1" (dst), "2" (src) \ |
|
364 |
: "memory" ); \ |
|
365 |
} while(0) |
|
366 |
#endif |
|
367 |
#ifndef SDL_memcpy4 |
|
368 |
#define SDL_memcpy4(dst, src, len) SDL_memcpy(dst, src, (len) << 2) |
|
369 |
#endif |
|
370 |
||
371 |
#if defined(__GNUC__) && defined(i386) |
|
372 |
#define SDL_revcpy(dst, src, len) \ |
|
373 |
do { \ |
|
374 |
int u0, u1, u2; \ |
|
375 |
char *dstp = (char *)(dst); \ |
|
376 |
char *srcp = (char *)(src); \ |
|
377 |
int n = (len); \ |
|
378 |
if ( n >= 4 ) { \ |
|
379 |
__asm__ __volatile__ ( \ |
|
380 |
"std\n\t" \ |
|
381 |
"rep ; movsl\n\t" \ |
|
2302
7ae1c419b626
Merged r3534:3535 from branches/SDL-1.2: Reset direction flag in SDL_revcpy().
Ryan C. Gordon <icculus@icculus.org>
parents:
2279
diff
changeset
|
382 |
"cld\n\t" \ |
1357 | 383 |
: "=&c" (u0), "=&D" (u1), "=&S" (u2) \ |
384 |
: "0" (n >> 2), \ |
|
385 |
"1" (dstp+(n-4)), "2" (srcp+(n-4)) \ |
|
386 |
: "memory" ); \ |
|
387 |
} \ |
|
388 |
switch (n & 3) { \ |
|
389 |
case 3: dstp[2] = srcp[2]; \ |
|
390 |
case 2: dstp[1] = srcp[1]; \ |
|
391 |
case 1: dstp[0] = srcp[0]; \ |
|
392 |
break; \ |
|
393 |
default: \ |
|
394 |
break; \ |
|
395 |
} \ |
|
396 |
} while(0) |
|
397 |
#endif |
|
398 |
#ifndef SDL_revcpy |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
399 |
extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
400 |
size_t len); |
1357 | 401 |
#endif |
402 |
||
1626 | 403 |
#ifdef HAVE_MEMMOVE |
1357 | 404 |
#define SDL_memmove memmove |
1626 | 405 |
#elif defined(HAVE_BCOPY) |
1357 | 406 |
#define SDL_memmove(d, s, n) bcopy((s), (d), (n)) |
407 |
#else |
|
408 |
#define SDL_memmove(dst, src, len) \ |
|
409 |
do { \ |
|
410 |
if ( dst < src ) { \ |
|
411 |
SDL_memcpy(dst, src, len); \ |
|
412 |
} else { \ |
|
413 |
SDL_revcpy(dst, src, len); \ |
|
414 |
} \ |
|
415 |
} while(0) |
|
416 |
#endif |
|
417 |
||
1626 | 418 |
#ifdef HAVE_MEMCMP |
1357 | 419 |
#define SDL_memcmp memcmp |
420 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
421 |
extern DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
422 |
size_t len); |
1357 | 423 |
#endif |
424 |
||
1626 | 425 |
#ifdef HAVE_STRLEN |
1357 | 426 |
#define SDL_strlen strlen |
427 |
#else |
|
428 |
extern DECLSPEC size_t SDLCALL SDL_strlen(const char *string); |
|
429 |
#endif |
|
430 |
||
1901
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
431 |
#ifdef HAVE_WCSLEN |
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
432 |
#define SDL_wcslen wcslen |
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
433 |
#else |
2735
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
434 |
#if !defined(wchar_t) && defined(__NINTENDODS__) |
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
435 |
#define wchar_t short /* TODO: figure out why libnds doesn't have this */ |
204be4fc2726
Final merge of Google Summer of Code 2008 work...
Sam Lantinga <slouken@libsdl.org>
parents:
2707
diff
changeset
|
436 |
#endif |
1903
f132024010be
More of the Direct3D renderer is implemented, I'm not sure why it's not showing texture copies yet...
Sam Lantinga <slouken@libsdl.org>
parents:
1901
diff
changeset
|
437 |
extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t * string); |
1901
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
438 |
#endif |
f1828a500391
Removed libc dependency on Windows again, to fix building with Visual C++ 2005 Express Edition.
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
439 |
|
1626 | 440 |
#ifdef HAVE_STRLCPY |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
441 |
#define SDL_strlcpy strlcpy |
1357 | 442 |
#else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
443 |
extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
444 |
size_t maxlen); |
1357 | 445 |
#endif |
446 |
||
1626 | 447 |
#ifdef HAVE_STRLCAT |
1379
c0a74f199ecf
Use only safe string functions
Sam Lantinga <slouken@libsdl.org>
parents:
1368
diff
changeset
|
448 |
#define SDL_strlcat strlcat |
1357 | 449 |
#else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
450 |
extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
451 |
size_t maxlen); |
1357 | 452 |
#endif |
453 |
||
1626 | 454 |
#ifdef HAVE_STRDUP |
1357 | 455 |
#define SDL_strdup strdup |
456 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
457 |
extern DECLSPEC char *SDLCALL SDL_strdup(const char *string); |
1357 | 458 |
#endif |
459 |
||
1626 | 460 |
#ifdef HAVE__STRREV |
1357 | 461 |
#define SDL_strrev _strrev |
462 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
463 |
extern DECLSPEC char *SDLCALL SDL_strrev(char *string); |
1357 | 464 |
#endif |
465 |
||
1626 | 466 |
#ifdef HAVE__STRUPR |
1357 | 467 |
#define SDL_strupr _strupr |
468 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
469 |
extern DECLSPEC char *SDLCALL SDL_strupr(char *string); |
1357 | 470 |
#endif |
471 |
||
1626 | 472 |
#ifdef HAVE__STRLWR |
1357 | 473 |
#define SDL_strlwr _strlwr |
474 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
475 |
extern DECLSPEC char *SDLCALL SDL_strlwr(char *string); |
1357 | 476 |
#endif |
477 |
||
1626 | 478 |
#ifdef HAVE_STRCHR |
1357 | 479 |
#define SDL_strchr strchr |
1626 | 480 |
#elif defined(HAVE_INDEX) |
1357 | 481 |
#define SDL_strchr index |
482 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
483 |
extern DECLSPEC char *SDLCALL SDL_strchr(const char *string, int c); |
1357 | 484 |
#endif |
485 |
||
1626 | 486 |
#ifdef HAVE_STRRCHR |
1357 | 487 |
#define SDL_strrchr strrchr |
1626 | 488 |
#elif defined(HAVE_RINDEX) |
1357 | 489 |
#define SDL_strrchr rindex |
490 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
491 |
extern DECLSPEC char *SDLCALL SDL_strrchr(const char *string, int c); |
1357 | 492 |
#endif |
493 |
||
1626 | 494 |
#ifdef HAVE_STRSTR |
1357 | 495 |
#define SDL_strstr strstr |
496 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
497 |
extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
498 |
const char *needle); |
1357 | 499 |
#endif |
500 |
||
1626 | 501 |
#ifdef HAVE_ITOA |
1357 | 502 |
#define SDL_itoa itoa |
503 |
#else |
|
504 |
#define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix) |
|
505 |
#endif |
|
506 |
||
1626 | 507 |
#ifdef HAVE__LTOA |
1357 | 508 |
#define SDL_ltoa _ltoa |
509 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
510 |
extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *string, int radix); |
1357 | 511 |
#endif |
512 |
||
1626 | 513 |
#ifdef HAVE__UITOA |
1357 | 514 |
#define SDL_uitoa _uitoa |
515 |
#else |
|
516 |
#define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix) |
|
517 |
#endif |
|
518 |
||
1626 | 519 |
#ifdef HAVE__ULTOA |
1357 | 520 |
#define SDL_ultoa _ultoa |
521 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
522 |
extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *string, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
523 |
int radix); |
1357 | 524 |
#endif |
525 |
||
1626 | 526 |
#ifdef HAVE_STRTOL |
1357 | 527 |
#define SDL_strtol strtol |
528 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
529 |
extern DECLSPEC long SDLCALL SDL_strtol(const char *string, char **endp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
530 |
int base); |
1357 | 531 |
#endif |
532 |
||
1626 | 533 |
#ifdef HAVE_STRTOUL |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
534 |
#define SDL_strtoul strtoul |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
535 |
#else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
536 |
extern DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *string, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
537 |
char **endp, int base); |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
538 |
#endif |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
539 |
|
1626 | 540 |
#ifdef SDL_HAS_64BIT_TYPE |
1357 | 541 |
|
1626 | 542 |
#ifdef HAVE__I64TOA |
1357 | 543 |
#define SDL_lltoa _i64toa |
544 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
545 |
extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *string, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
546 |
int radix); |
1357 | 547 |
#endif |
548 |
||
1626 | 549 |
#ifdef HAVE__UI64TOA |
1357 | 550 |
#define SDL_ulltoa _ui64toa |
551 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
552 |
extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *string, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
553 |
int radix); |
1357 | 554 |
#endif |
555 |
||
1626 | 556 |
#ifdef HAVE_STRTOLL |
1357 | 557 |
#define SDL_strtoll strtoll |
558 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
559 |
extern DECLSPEC Sint64 SDLCALL SDL_strtoll(const char *string, char **endp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
560 |
int base); |
1357 | 561 |
#endif |
562 |
||
1626 | 563 |
#ifdef HAVE_STRTOULL |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
564 |
#define SDL_strtoull strtoull |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
565 |
#else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
566 |
extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *string, char **endp, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
567 |
int base); |
1456
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
568 |
#endif |
84de7511f79f
Fixed a bunch of 64-bit compatibility problems
Sam Lantinga <slouken@libsdl.org>
parents:
1422
diff
changeset
|
569 |
|
1357 | 570 |
#endif /* SDL_HAS_64BIT_TYPE */ |
571 |
||
1626 | 572 |
#ifdef HAVE_STRTOD |
1357 | 573 |
#define SDL_strtod strtod |
574 |
#else |
|
575 |
extern DECLSPEC double SDLCALL SDL_strtod(const char *string, char **endp); |
|
576 |
#endif |
|
577 |
||
1626 | 578 |
#ifdef HAVE_ATOI |
1357 | 579 |
#define SDL_atoi atoi |
580 |
#else |
|
581 |
#define SDL_atoi(X) SDL_strtol(X, NULL, 0) |
|
582 |
#endif |
|
583 |
||
1626 | 584 |
#ifdef HAVE_ATOF |
1357 | 585 |
#define SDL_atof atof |
586 |
#else |
|
587 |
#define SDL_atof(X) SDL_strtod(X, NULL) |
|
588 |
#endif |
|
589 |
||
1626 | 590 |
#ifdef HAVE_STRCMP |
1357 | 591 |
#define SDL_strcmp strcmp |
592 |
#else |
|
593 |
extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2); |
|
594 |
#endif |
|
595 |
||
1626 | 596 |
#ifdef HAVE_STRNCMP |
1357 | 597 |
#define SDL_strncmp strncmp |
598 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
599 |
extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
600 |
size_t maxlen); |
1357 | 601 |
#endif |
602 |
||
1626 | 603 |
#ifdef HAVE_STRCASECMP |
1357 | 604 |
#define SDL_strcasecmp strcasecmp |
1626 | 605 |
#elif defined(HAVE__STRICMP) |
1510 | 606 |
#define SDL_strcasecmp _stricmp |
1357 | 607 |
#else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
608 |
extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
609 |
const char *str2); |
1357 | 610 |
#endif |
611 |
||
1626 | 612 |
#ifdef HAVE_STRNCASECMP |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
613 |
#define SDL_strncasecmp strncasecmp |
1626 | 614 |
#elif defined(HAVE__STRNICMP) |
1512 | 615 |
#define SDL_strncasecmp _strnicmp |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
616 |
#else |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
617 |
extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
618 |
const char *str2, size_t maxlen); |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
619 |
#endif |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
620 |
|
1626 | 621 |
#ifdef HAVE_SSCANF |
1357 | 622 |
#define SDL_sscanf sscanf |
623 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
624 |
extern DECLSPEC int SDLCALL SDL_sscanf(const char *text, const char *fmt, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
625 |
...); |
1357 | 626 |
#endif |
627 |
||
1626 | 628 |
#ifdef HAVE_SNPRINTF |
1357 | 629 |
#define SDL_snprintf snprintf |
630 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
631 |
extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
632 |
const char *fmt, ...); |
1357 | 633 |
#endif |
634 |
||
1626 | 635 |
#ifdef HAVE_VSNPRINTF |
1357 | 636 |
#define SDL_vsnprintf vsnprintf |
637 |
#else |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
638 |
extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
639 |
const char *fmt, va_list ap); |
1357 | 640 |
#endif |
641 |
||
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
642 |
/* The SDL implementation of iconv() returns these error codes */ |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
643 |
#define SDL_ICONV_ERROR (size_t)-1 |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
644 |
#define SDL_ICONV_E2BIG (size_t)-2 |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
645 |
#define SDL_ICONV_EILSEQ (size_t)-3 |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
646 |
#define SDL_ICONV_EINVAL (size_t)-4 |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
647 |
|
1626 | 648 |
#ifdef HAVE_ICONV |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
649 |
#define SDL_iconv_t iconv_t |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
650 |
#define SDL_iconv_open iconv_open |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
651 |
#define SDL_iconv_close iconv_close |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
652 |
#else |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
653 |
typedef struct _SDL_iconv_t *SDL_iconv_t; |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
654 |
extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
655 |
const char *fromcode); |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
656 |
extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd); |
2135
0313af081a84
Merge iconv const changes from 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2111
diff
changeset
|
657 |
#endif |
0313af081a84
Merge iconv const changes from 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2111
diff
changeset
|
658 |
extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf, |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
659 |
size_t * inbytesleft, char **outbuf, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
660 |
size_t * outbytesleft); |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
661 |
/* This function converts a string between encodings in one pass, returning a |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
662 |
string that must be freed with SDL_free() or NULL on error. |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
663 |
*/ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
664 |
extern DECLSPEC char *SDLCALL SDL_iconv_string(const char *tocode, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
665 |
const char *fromcode, |
2135
0313af081a84
Merge iconv const changes from 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2111
diff
changeset
|
666 |
const char *inbuf, |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
667 |
size_t inbytesleft); |
2143
e906da4414a3
Fix for bug #447 merged from SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
2142
diff
changeset
|
668 |
#define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1) |
1501
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
669 |
#define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1) |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
670 |
#define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1) |
73dc5d39bbf8
Added UTF-8 <-> UTF-16 <-> UTF-32 <-> UCS-2 <-> UCS-4 conversion capability
Sam Lantinga <slouken@libsdl.org>
parents:
1456
diff
changeset
|
671 |
|
1357 | 672 |
/* Ends C function definitions when using C++ */ |
673 |
#ifdef __cplusplus |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
674 |
/* *INDENT-OFF* */ |
1357 | 675 |
} |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
676 |
/* *INDENT-ON* */ |
1357 | 677 |
#endif |
678 |
#include "close_code.h" |
|
679 |
||
680 |
#endif /* _SDL_stdinc_h */ |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
681 |
|
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1870
diff
changeset
|
682 |
/* vi: set ts=4 sw=4 expandtab: */ |