#ifndef __HTTP_API_H__
#define __HTTP_API_H__

#if defined(__cplusplus)
extern "C" {
#endif

#include <stdint.h>

void HTTP_init(const char *host, uint16_t port);
int HTTP_get_file(const char *path, char *save_file_name);


#if defined(__cplusplus)
}
#endif

#endif

