From 7a388dad85152a203033c14fee3c64607301865a Mon Sep 17 00:00:00 2001 From: "Anna (navi) Figueiredo Gomes" Date: Sat, 8 Jul 2023 15:06:33 -0300 Subject: libactivity: (tmp name) http request parse the parse works via callbacks, registered to a method and path. further work will be done to simplify extraction of path, and to make the request struct more private. missing the parsing and handling of reponses. Signed-off-by: Anna (navi) Figueiredo Gomes --- include/linked_list.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/linked_list.h (limited to 'include/linked_list.h') diff --git a/include/linked_list.h b/include/linked_list.h new file mode 100644 index 0000000..e591e94 --- /dev/null +++ b/include/linked_list.h @@ -0,0 +1,9 @@ +#ifndef _LINKED_LIST_H_ +#define _LINKED_LIST_H_ + +struct linked_list { + void *data; + +}; + +#endif -- cgit v1.2.3