#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