Commented standard library include with the functions we use. Using ImFormatString in place of sprintf (part of #172)

This commit is contained in:
ocornut
2015-03-21 19:27:29 +00:00
parent 7c8946b9b7
commit 85f432dc8d
2 changed files with 9 additions and 9 deletions

View File

@ -9,9 +9,9 @@
#include "imconfig.h" // User-editable configuration file
#include <float.h> // FLT_MAX
#include <stdarg.h> // va_list
#include <stddef.h> // ptrdiff_t
#include <stdlib.h> // NULL, malloc
#include <string.h> // memset, memmove
#include <stddef.h> // ptrdiff_t, NULL
#include <stdlib.h> // NULL, malloc, free, qsort, atoi
#include <string.h> // memset, memmove, memcpy, strlen, strchr, strcpy, strcmp
#define IMGUI_VERSION "1.37 WIP"