diff options
| author | Ray <raysan5@gmail.com> | 2016-06-02 01:26:44 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2016-06-02 01:26:44 +0200 |
| commit | 17878550b1e2dde44fcd1e668c92ca2d96680a28 (patch) | |
| tree | 40811b7f15dc77d88ec80a7029691e034bb53cb8 /src/utils.c | |
| parent | 7afa0b09ab00b610ad084026022df788fb787229 (diff) | |
| download | raylib-17878550b1e2dde44fcd1e668c92ca2d96680a28.tar.gz raylib-17878550b1e2dde44fcd1e668c92ca2d96680a28.zip | |
Review heades usage
This is a first step toward a bigger project. Some modules could be
ported to header-only to be used as standalone.
Diffstat (limited to 'src/utils.c')
| -rw-r--r-- | src/utils.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/utils.c b/src/utils.c index f0ccf3e2..97561ee6 100644 --- a/src/utils.c +++ b/src/utils.c @@ -35,14 +35,14 @@ #include <android/asset_manager.h> #endif -#include <stdlib.h> // malloc(), free() -#include <stdio.h> // printf(), fprintf() -#include <stdarg.h> // Used for functions with variable number of parameters (TraceLog()) -//#include <string.h> // String management functions: strlen(), strrchr(), strcmp() +#include <stdlib.h> // Required for: malloc(), free() +#include <stdio.h> // Required for: fopen(), fclose(), fputc(), fwrite(), printf(), fprintf(), funopen() +#include <stdarg.h> // Required for: va_list, va_start(), vfprintf(), va_end() +//#include <string.h> // Required for: strlen(), strrchr(), strcmp() #if defined(PLATFORM_DESKTOP) || defined(PLATFORM_RPI) #define STB_IMAGE_WRITE_IMPLEMENTATION - #include "stb_image_write.h" // Create PNG file + #include "stb_image_write.h" // Required for: stbi_write_png() #endif #include "tinfl.c" |
