summaryrefslogtreecommitdiff
path: root/src/SDL2/include/SDL_endian.h
diff options
context:
space:
mode:
authorMAN-AT-ARMS <donny@ecgnetwork.com>2014-03-08 22:00:38 -0500
committerTim Angus <tim@ngus.net>2014-08-28 11:03:31 +0100
commit57e0583885b51fb736589f6187facfcfb9d06a67 (patch)
tree2d48bf168880a3d5a0cbe3f6d5660db4cbb30995 /src/SDL2/include/SDL_endian.h
parent482262a75610e63d2a779fea5b37b8206d87e947 (diff)
Update SDL2 to 2.0.2
Diffstat (limited to 'src/SDL2/include/SDL_endian.h')
-rw-r--r--src/SDL2/include/SDL_endian.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/SDL2/include/SDL_endian.h b/src/SDL2/include/SDL_endian.h
index c58edcca..161c418d 100644
--- a/src/SDL2/include/SDL_endian.h
+++ b/src/SDL2/include/SDL_endian.h
@@ -1,6 +1,6 @@
/*
Simple DirectMedia Layer
- Copyright (C) 1997-2013 Sam Lantinga <slouken@libsdl.org>
+ Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
@@ -33,10 +33,10 @@
/**
* \name The two types of endianness
*/
-/*@{*/
+/* @{ */
#define SDL_LIL_ENDIAN 1234
#define SDL_BIG_ENDIAN 4321
-/*@}*/
+/* @} */
#ifndef SDL_BYTEORDER /* Not defined in SDL_config.h? */
#ifdef __linux__
@@ -206,7 +206,7 @@ SDL_SwapFloat(float x)
* \name Swap to native
* Byteswap item from the specified endianness to the native endianness.
*/
-/*@{*/
+/* @{ */
#if SDL_BYTEORDER == SDL_LIL_ENDIAN
#define SDL_SwapLE16(X) (X)
#define SDL_SwapLE32(X) (X)
@@ -226,7 +226,7 @@ SDL_SwapFloat(float x)
#define SDL_SwapBE64(X) (X)
#define SDL_SwapFloatBE(X) (X)
#endif
-/*@}*//*Swap to native*/
+/* @} *//* Swap to native */
/* Ends C function definitions when using C++ */
#ifdef __cplusplus