xmlparser

XML parser
git clone git://git.codemadness.org/xmlparser
Log | Files | Refs | README | LICENSE

commit 69fd59a2bde2c2ddd9a478e83a90cfb969ad2369
parent 26ae48529f916f9cd178114f543aa565b8dbb088
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Tue,  6 Oct 2020 19:00:50 +0200

xml.h: add underscore for #ifdef guard

This is the common style.

Diffstat:
Mxml.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xml.h b/xml.h @@ -1,5 +1,5 @@ -#ifndef _XML_H -#define _XML_H +#ifndef _XML_H_ +#define _XML_H_ #include <stdio.h>