Prevent silly strncpy security warning in MSVC.
https://github.com/benhoyt/inih/issues/34
diff --git a/ini.c b/ini.c
index 9d8e313..d29fde4 100644
--- a/ini.c
+++ b/ini.c
@@ -7,6 +7,10 @@
 
 */
 
+#ifdef _MSC_VER
+#define _CRT_SECURE_NO_WARNINGS
+#endif
+
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>