blob: 30de9ba9ec198a779159328d1d3701da33a5e70c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef HTTP_H
#define HTTP_H
char *http_data(char *response);
char *http_query_get(const char *url, const char *path);
char *http_code(char *r);
#endif
|