#ifndef UPNPREPLYPARSE_H_INCLUDED
#define UPNPREPLYPARSE_H_INCLUDED
#ifdef __cplusplus
extern "C" {
#endif
struct NameValue { … };
struct NameValueParserData { … };
void
ParseNameValue(const char * buffer, int bufsize,
struct NameValueParserData * data);
void
ClearNameValueList(struct NameValueParserData * pdata);
char *
GetValueFromNameValueList(struct NameValueParserData * pdata,
const char * Name);
#if 0
char *
GetValueFromNameValueListIgnoreNS(struct NameValueParserData * pdata,
const char * Name);
#endif
#ifdef DEBUG
void
DisplayNameValueList(char * buffer, int bufsize);
#endif
#ifdef __cplusplus
}
#endif
#endif