about summary refs log tree commit diff stats
path: root/tests/unittests/tools
diff options
context:
space:
mode:
authorWilliam Wennerström <william@wstrm.dev>2020-12-04 16:13:13 +0100
committerWilliam Wennerström <william@wstrm.dev>2020-12-04 16:13:13 +0100
commit1d2c0a8836123c3b484826b974f87a0061bc110b (patch)
tree21e926e71bd4ed7391f4d2d512a69802bf2ad17c /tests/unittests/tools
parent3a6597ee2967f91f49a1b4e17cf0595f37064587 (diff)
downloadprofani-tty-1d2c0a8836123c3b484826b974f87a0061bc110b.tar.gz
Move unique_filename_from_url functions to common
Diffstat (limited to 'tests/unittests/tools')
-rw-r--r--tests/unittests/tools/stub_http_download.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/unittests/tools/stub_http_download.c b/tests/unittests/tools/stub_http_download.c
index 5fa1c46e..cc7bddc5 100644
--- a/tests/unittests/tools/stub_http_download.c
+++ b/tests/unittests/tools/stub_http_download.c
@@ -18,4 +18,13 @@ typedef struct http_download_t
     int cancel;
 } HTTPDownload;
 
+void*
+http_file_get(void* userdata)
+{
+    return NULL;
+}
+
+void http_download_cancel_processes(){};
+void http_download_add_download(){};
+
 #endif