Implement adding new sections/lines/fields and writing the resulting file
[reactos.git] / reactos / lib / inflib / infhostglue.c
1 /*
2 * PROJECT: .inf file parser
3 * LICENSE: GPL - See COPYING in the top level directory
4 * COPYRIGHT: Copyright 2005 Ge van Geldorp <gvg@reactos.org>
5 */
6
7 /* INCLUDES *****************************************************************/
8
9 #include "inflib.h"
10
11 #define NDEBUG
12 #include <debug.h>
13
14 void
15 DbgPrint(const char *Fmt, ...)
16 {
17 va_list Args;
18
19 va_start(Args, Fmt);
20 vfprintf(stderr, Fmt, Args);
21 va_end(Args);
22 }
23
24 /* EOF */