summaryrefslogtreecommitdiffhomepage
path: root/src/utils.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2019-04-28 16:45:23 +0200
committerraysan5 <[email protected]>2019-04-28 16:45:23 +0200
commit40940f439860b3345198dc44cd493f0c0dc12f7c (patch)
tree0ea3c0d8bf292fa2ee90a27949e1cc2e42d01d84 /src/utils.c
parent7c10f971c1f8edfc65b074aceec7c3a0696c9b87 (diff)
downloadraylib-40940f439860b3345198dc44cd493f0c0dc12f7c.tar.gz
raylib-40940f439860b3345198dc44cd493f0c0dc12f7c.zip
Some formatting review
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/utils.c b/src/utils.c
index 52fd0b45..ee4be46d 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -34,7 +34,7 @@
// Check if config flags have been externally provided on compilation line
#if !defined(EXTERNAL_CONFIG_FLAGS)
- #include "config.h" // Defines module configuration flags
+ #include "config.h" // Defines module configuration flags
#endif
#include "utils.h"
@@ -69,7 +69,7 @@ AAssetManager *assetManager;
// Module specific Functions Declaration
//----------------------------------------------------------------------------------
#if defined(PLATFORM_ANDROID)
-/* This should be in <stdio.h>, but Travis doesn't find it... */
+// This should be in <stdio.h>, but Travis does not find it...
FILE *funopen(const void *cookie, int (*readfn)(void *, char *, int), int (*writefn)(void *, const char *, int),
fpos_t (*seekfn)(void *, fpos_t, int), int (*closefn)(void *));
@@ -173,7 +173,7 @@ FILE *android_fopen(const char *fileName, const char *mode)
return funopen(asset, android_read, android_write, android_seek, android_close);
}
-#endif
+#endif // PLATFORM_ANDROID
//----------------------------------------------------------------------------------
// Module specific Functions Definition
@@ -201,7 +201,7 @@ static int android_close(void *cookie)
AAsset_close((AAsset *)cookie);
return 0;
}
-#endif
+#endif // PLATFORM_ANDROID
#if defined(PLATFORM_UWP)
@@ -276,4 +276,4 @@ UWPMessage* GetMessageFromUWP(void)
return NULL;
}
-#endif // defined(PLATFORM_UWP)
+#endif // PLATFORM_UWP