aboutsummaryrefslogtreecommitdiff
path: root/src/download.h
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-07-13 15:59:30 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-13 15:59:30 +0200
commitae0520e57267dbd866fc8cd25f66f4e6af2ac118 (patch)
tree22788688f1b588c3ad00c1ce3fe13da68b3a9382 /src/download.h
parenta1ca82847eb356c6b85ada2ac11f38d98f6e085e (diff)
Move c files into src directory
Diffstat (limited to 'src/download.h')
-rw-r--r--src/download.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/download.h b/src/download.h
new file mode 100644
index 0000000..0682ba9
--- /dev/null
+++ b/src/download.h
@@ -0,0 +1,7 @@
+#ifndef DOWNLOAD_H
+#define DOWNLOAD_H
+
+struct Buffer;
+int download_to_buffer(const char *url, struct Buffer *buffer);
+
+#endif