mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
added include guard
This commit is contained in:
parent
875d48ee07
commit
b382194ca7
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue