1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

added include guard

This commit is contained in:
Mathias Laurenz Baumann 2011-04-19 21:55:22 +02:00
parent 875d48ee07
commit b382194ca7

View file

@ -1,6 +1,9 @@
#include <stdint.h>
#include <string.h>
#ifndef PSYC_PARSER_H_INCLUDED
#define PSYC_PARSER_H_INCLUDED
enum PSYC_Flags
{
PSYC_HEADER_ONLY = 1
@ -154,3 +157,6 @@ inline size_t PSYC_getContentLength (PSYC_State* s)
int PSYC_parse(PSYC_State* state, uint8_t* modifier, PSYC_Array* name, PSYC_Array* value);
int PSYC_parseList(PSYC_ListState* state, PSYC_Array *name, PSYC_Array* value, PSYC_Array* elem);
#endif