1
0
mirror of https://github.com/benhoyt/inih.git synced 2025-01-28 22:52:54 +08:00

Resolve HTTP 301 redirect in comment (#66)

This commit is contained in:
jsshandle 2018-07-09 21:35:40 +02:00 committed by Ben Hoyt
parent 9d1af9d500
commit 804c45b069

2
ini.h
View File

@ -73,7 +73,7 @@ int ini_parse_string(const char* string, ini_handler handler, void* user);
#endif
/* Nonzero to allow a UTF-8 BOM sequence (0xEF 0xBB 0xBF) at the start of
the file. See http://code.google.com/p/inih/issues/detail?id=21 */
the file. See https://github.com/benhoyt/inih/issues/21 */
#ifndef INI_ALLOW_BOM
#define INI_ALLOW_BOM 1
#endif