aboutsummaryrefslogtreecommitdiff
path: root/src/download.h
blob: 3c7f0aae97f7f0a2097eab31734bf9cae9304f19 (plain)
1
2
3
4
5
6
7
8
#ifndef DOWNLOAD_H
#define DOWNLOAD_H

struct Buffer;
int download_to_buffer(const char *url, struct Buffer *buffer);
int is_header_response_ok(const char *url);

#endif