00001 // Copyright (C) 2009-2010 Ferdinand Majerech 00002 // This file is part of MiniINI 00003 // For conditions of distribution and use, see copyright notice in LICENSE.txt 00004 00005 #include "typedefs.h" 00006 #include "globals.h" 00007 00008 namespace miniini_private 00009 { 00010 00012 c comment = ';'; 00013 00015 00018 c linesep[3] = {10, 13, 0}; 00019 00021 c truebools[BOOLNUM][8] = {"true", "yes", "1"}; 00022 c falsebools[BOOLNUM][8] = {"false", "no", "0"}; 00023 00024 } 00025 00026 void INISetComment(const char commentchar) 00027 { 00028 miniini_private::comment = commentchar; 00029 }