ported relevant shared http declarations into header file

This commit is contained in:
mathewmarcus 2018-07-14 15:55:35 -05:00
parent d89483ed05
commit 689b20f60a
2 changed files with 14 additions and 4 deletions

11
hydra-http.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef _HYDRA_HTTP_H
#define _HYDRA_HTTP_H
typedef struct header_node t_header_node, *ptr_header_node;
extern char *webtarget;
extern char *slash;
extern char *optional1;
extern ptr_header_node parse_options(char *miscptr);
#endif