some changes to the dummy driver for debug purposes that should be reverted.
most importantly, commenting out a check for an env. var.
2 SDL - Simple DirectMedia Layer
3 Copyright (C) 1997-2006 Sam Lantinga
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.
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.
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
26 * This is a general header that includes C language support
32 #include "SDL_config.h"
35 #ifdef HAVE_SYS_TYPES_H
36 #include <sys/types.h>
41 #if defined(STDC_HEADERS)
46 # if defined(HAVE_STDLIB_H)
48 # elif defined(HAVE_MALLOC_H)
51 # if defined(HAVE_STDDEF_H)
54 # if defined(HAVE_STDARG_H)
59 # if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
67 #if defined(HAVE_INTTYPES_H)
68 # include <inttypes.h>
69 #elif defined(HAVE_STDINT_H)
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)
83 /* Basic data types */
92 * \brief A signed 8-bit integer type.
97 * \brief An unsigned 8-bit integer type.
99 typedef uint8_t Uint8;
102 * \brief A signed 16-bit integer type.
104 typedef int16_t Sint16;
107 * \brief An unsigned 16-bit integer type.
109 typedef uint16_t Uint16;
112 * \brief A signed 32-bit integer type.
114 typedef int32_t Sint32;
117 * \brief An unsigned 32-bit integer type.
119 typedef uint32_t Uint32;
121 #ifdef SDL_HAS_64BIT_TYPE
124 * \brief A signed 64-bit integer type.
125 * \warning On platforms without any sort of 64-bit datatype, this is equivalent to Sint32!
127 typedef int64_t Sint64;
130 * \brief An unsigned 64-bit integer type.
131 * \warning On platforms without any sort of 64-bit datatype, this is equivalent to Uint32!
133 typedef uint64_t Uint64;
135 /* This is really just a hack to prevent the compiler from complaining */
136 typedef Sint32 Sint64;
137 typedef Uint32 Uint64;
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]
143 #ifndef DOXYGEN_SHOULD_IGNORE_THIS
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);
150 #ifndef __NINTENDODS__ /* TODO: figure out why the following happens:
151 include/SDL_stdinc.h:150: error: size of array 'SDL_dummy_uint64' is negative
152 include/SDL_stdinc.h:151: error: size of array 'SDL_dummy_sint64' is negative */
153 SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
154 SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
156 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */
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).
163 /* Enable enums always int in CodeWarrior (for MPW use "-enum int") */
165 #pragma enumsalwaysint on
168 #ifndef DOXYGEN_SHOULD_IGNORE_THIS
169 #ifndef __NINTENDODS__ /* TODO: include/SDL_stdinc.h:174: error: size of array 'SDL_dummy_enum' is negative */
175 SDL_COMPILE_TIME_ASSERT(enum, sizeof(SDL_DUMMY_ENUM) == sizeof(int));
177 #endif /* DOXYGEN_SHOULD_IGNORE_THIS */
179 #include "begin_code.h"
180 /* Set up for C function definitions, even when using C++ */
188 #define SDL_malloc malloc
190 extern DECLSPEC void *SDLCALL SDL_malloc(size_t size);
194 #define SDL_calloc calloc
196 extern DECLSPEC void *SDLCALL SDL_calloc(size_t nmemb, size_t size);
200 #define SDL_realloc realloc
202 extern DECLSPEC void *SDLCALL SDL_realloc(void *mem, size_t size);
206 #define SDL_free free
208 extern DECLSPEC void SDLCALL SDL_free(void *mem);
211 #if defined(HAVE_ALLOCA) && !defined(alloca)
212 # if defined(HAVE_ALLOCA_H)
214 # elif defined(__GNUC__)
215 # define alloca __builtin_alloca
216 # elif defined(_MSC_VER)
218 # define alloca _alloca
219 # elif defined(__WATCOMC__)
221 # elif defined(__BORLANDC__)
223 # elif defined(__DMC__)
225 # elif defined(__AIX__)
227 # elif defined(__MRC__)
228 void *alloca(unsigned);
234 #define SDL_stack_alloc(type, count) (type*)alloca(sizeof(type)*(count))
235 #define SDL_stack_free(data)
237 #define SDL_stack_alloc(type, count) (type*)SDL_malloc(sizeof(type)*(count))
238 #define SDL_stack_free(data) SDL_free(data)
242 #define SDL_getenv getenv
244 extern DECLSPEC char *SDLCALL SDL_getenv(const char *name);
248 #define SDL_putenv putenv
250 extern DECLSPEC int SDLCALL SDL_putenv(const char *variable);
254 #define SDL_qsort qsort
256 extern DECLSPEC void SDLCALL SDL_qsort(void *base, size_t nmemb, size_t size,
257 int (*compare) (const void *,
264 #define SDL_abs(X) ((X) < 0 ? -(X) : (X))
267 #define SDL_min(x, y) (((x) < (y)) ? (x) : (y))
268 #define SDL_max(x, y) (((x) > (y)) ? (x) : (y))
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)
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))
283 #define SDL_memset memset
285 extern DECLSPEC void *SDLCALL SDL_memset(void *dst, int c, size_t len);
287 #define SDL_zero(x) SDL_memset(&(x), 0, sizeof((x)))
288 #define SDL_zerop(x) SDL_memset((x), 0, sizeof(*(x)))
290 #if defined(__GNUC__) && defined(i386)
291 #define SDL_memset4(dst, val, len) \
294 __asm__ __volatile__ ( \
297 : "=&D" (u0), "=&a" (u1), "=&c" (u2) \
298 : "0" (dst), "1" (val), "2" ((Uint32)(len)) \
303 #define SDL_memset4(dst, val, len) \
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; \
319 /* We can count on memcpy existing on Mac OS X and being well-tuned. */
320 #if defined(__MACH__) && defined(__APPLE__)
321 #define SDL_memcpy(dst, src, len) memcpy(dst, src, len)
322 #elif defined(__GNUC__) && defined(i386)
323 #define SDL_memcpy(dst, src, len) \
326 __asm__ __volatile__ ( \
332 "1:\ttestb $1,%b4\n\t" \
336 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
337 : "0" ((unsigned)(len)/4), "q" (len), "1" (dst),"2" (src) \
343 #define SDL_memcpy memcpy
344 #elif defined(HAVE_BCOPY)
345 #define SDL_memcpy(d, s, n) bcopy((s), (d), (n))
347 extern DECLSPEC void *SDLCALL SDL_memcpy(void *dst, const void *src,
352 /* We can count on memcpy existing on Mac OS X and being well-tuned. */
353 #if defined(__MACH__) && defined(__APPLE__)
354 #define SDL_memcpy4(dst, src, len) memcpy(dst, src, (len)*4)
355 #elif defined(__GNUC__) && defined(i386)
356 #define SDL_memcpy4(dst, src, len) \
359 __asm__ __volatile__ ( \
362 : "=&c" (ecx), "=&D" (edi), "=&S" (esi) \
363 : "0" ((unsigned)(len)), "1" (dst), "2" (src) \
368 #define SDL_memcpy4(dst, src, len) SDL_memcpy(dst, src, (len) << 2)
371 #if defined(__GNUC__) && defined(i386)
372 #define SDL_revcpy(dst, src, len) \
375 char *dstp = (char *)(dst); \
376 char *srcp = (char *)(src); \
379 __asm__ __volatile__ ( \
383 : "=&c" (u0), "=&D" (u1), "=&S" (u2) \
385 "1" (dstp+(n-4)), "2" (srcp+(n-4)) \
389 case 3: dstp[2] = srcp[2]; \
390 case 2: dstp[1] = srcp[1]; \
391 case 1: dstp[0] = srcp[0]; \
399 extern DECLSPEC void *SDLCALL SDL_revcpy(void *dst, const void *src,
404 #define SDL_memmove memmove
405 #elif defined(HAVE_BCOPY)
406 #define SDL_memmove(d, s, n) bcopy((s), (d), (n))
408 #define SDL_memmove(dst, src, len) \
411 SDL_memcpy(dst, src, len); \
413 SDL_revcpy(dst, src, len); \
419 #define SDL_memcmp memcmp
421 extern DECLSPEC int SDLCALL SDL_memcmp(const void *s1, const void *s2,
426 #define SDL_strlen strlen
428 extern DECLSPEC size_t SDLCALL SDL_strlen(const char *string);
432 #define SDL_wcslen wcslen
434 #if !defined(wchar_t) && defined(__NINTENDODS__)
435 #define wchar_t short /* TODO: figure out why libnds doesn't have this */
437 extern DECLSPEC size_t SDLCALL SDL_wcslen(const wchar_t * string);
441 #define SDL_strlcpy strlcpy
443 extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src,
448 #define SDL_strlcat strlcat
450 extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src,
455 #define SDL_strdup strdup
457 extern DECLSPEC char *SDLCALL SDL_strdup(const char *string);
461 #define SDL_strrev _strrev
463 extern DECLSPEC char *SDLCALL SDL_strrev(char *string);
467 #define SDL_strupr _strupr
469 extern DECLSPEC char *SDLCALL SDL_strupr(char *string);
473 #define SDL_strlwr _strlwr
475 extern DECLSPEC char *SDLCALL SDL_strlwr(char *string);
479 #define SDL_strchr strchr
480 #elif defined(HAVE_INDEX)
481 #define SDL_strchr index
483 extern DECLSPEC char *SDLCALL SDL_strchr(const char *string, int c);
487 #define SDL_strrchr strrchr
488 #elif defined(HAVE_RINDEX)
489 #define SDL_strrchr rindex
491 extern DECLSPEC char *SDLCALL SDL_strrchr(const char *string, int c);
495 #define SDL_strstr strstr
497 extern DECLSPEC char *SDLCALL SDL_strstr(const char *haystack,
502 #define SDL_itoa itoa
504 #define SDL_itoa(value, string, radix) SDL_ltoa((long)value, string, radix)
508 #define SDL_ltoa _ltoa
510 extern DECLSPEC char *SDLCALL SDL_ltoa(long value, char *string, int radix);
514 #define SDL_uitoa _uitoa
516 #define SDL_uitoa(value, string, radix) SDL_ultoa((long)value, string, radix)
520 #define SDL_ultoa _ultoa
522 extern DECLSPEC char *SDLCALL SDL_ultoa(unsigned long value, char *string,
527 #define SDL_strtol strtol
529 extern DECLSPEC long SDLCALL SDL_strtol(const char *string, char **endp,
534 #define SDL_strtoul strtoul
536 extern DECLSPEC unsigned long SDLCALL SDL_strtoul(const char *string,
537 char **endp, int base);
540 #ifdef SDL_HAS_64BIT_TYPE
543 #define SDL_lltoa _i64toa
545 extern DECLSPEC char *SDLCALL SDL_lltoa(Sint64 value, char *string,
550 #define SDL_ulltoa _ui64toa
552 extern DECLSPEC char *SDLCALL SDL_ulltoa(Uint64 value, char *string,
557 #define SDL_strtoll strtoll
559 extern DECLSPEC Sint64 SDLCALL SDL_strtoll(const char *string, char **endp,
564 #define SDL_strtoull strtoull
566 extern DECLSPEC Uint64 SDLCALL SDL_strtoull(const char *string, char **endp,
570 #endif /* SDL_HAS_64BIT_TYPE */
573 #define SDL_strtod strtod
575 extern DECLSPEC double SDLCALL SDL_strtod(const char *string, char **endp);
579 #define SDL_atoi atoi
581 #define SDL_atoi(X) SDL_strtol(X, NULL, 0)
585 #define SDL_atof atof
587 #define SDL_atof(X) SDL_strtod(X, NULL)
591 #define SDL_strcmp strcmp
593 extern DECLSPEC int SDLCALL SDL_strcmp(const char *str1, const char *str2);
597 #define SDL_strncmp strncmp
599 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2,
603 #ifdef HAVE_STRCASECMP
604 #define SDL_strcasecmp strcasecmp
605 #elif defined(HAVE__STRICMP)
606 #define SDL_strcasecmp _stricmp
608 extern DECLSPEC int SDLCALL SDL_strcasecmp(const char *str1,
612 #ifdef HAVE_STRNCASECMP
613 #define SDL_strncasecmp strncasecmp
614 #elif defined(HAVE__STRNICMP)
615 #define SDL_strncasecmp _strnicmp
617 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1,
618 const char *str2, size_t maxlen);
622 #define SDL_sscanf sscanf
624 extern DECLSPEC int SDLCALL SDL_sscanf(const char *text, const char *fmt,
629 #define SDL_snprintf snprintf
631 extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen,
632 const char *fmt, ...);
635 #ifdef HAVE_VSNPRINTF
636 #define SDL_vsnprintf vsnprintf
638 extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen,
639 const char *fmt, va_list ap);
642 /* The SDL implementation of iconv() returns these error codes */
643 #define SDL_ICONV_ERROR (size_t)-1
644 #define SDL_ICONV_E2BIG (size_t)-2
645 #define SDL_ICONV_EILSEQ (size_t)-3
646 #define SDL_ICONV_EINVAL (size_t)-4
649 #define SDL_iconv_t iconv_t
650 #define SDL_iconv_open iconv_open
651 #define SDL_iconv_close iconv_close
653 typedef struct _SDL_iconv_t *SDL_iconv_t;
654 extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode,
655 const char *fromcode);
656 extern DECLSPEC int SDLCALL SDL_iconv_close(SDL_iconv_t cd);
658 extern DECLSPEC size_t SDLCALL SDL_iconv(SDL_iconv_t cd, const char **inbuf,
659 size_t * inbytesleft, char **outbuf,
660 size_t * outbytesleft);
661 /* This function converts a string between encodings in one pass, returning a
662 string that must be freed with SDL_free() or NULL on error.
664 extern DECLSPEC char *SDLCALL SDL_iconv_string(const char *tocode,
665 const char *fromcode,
668 #define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1)
669 #define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1)
670 #define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1)
672 /* Ends C function definitions when using C++ */
678 #include "close_code.h"
680 #endif /* _SDL_stdinc_h */
682 /* vi: set ts=4 sw=4 expandtab: */