Run make format on rebase

This commit is contained in:
William Wennerström
2020-07-20 13:01:05 +02:00
parent a0cf0844ab
commit 4711fc62a3
19 changed files with 782 additions and 827 deletions

View File

@@ -46,20 +46,21 @@
#include "ui/win_types.h"
typedef struct http_download_t {
char *url;
FILE *filehandle;
typedef struct http_download_t
{
char* url;
FILE* filehandle;
curl_off_t bytes_received;
ProfWin *window;
ProfWin* window;
pthread_t worker;
int cancel;
} HTTPDownload;
void* http_file_get(void *userdata);
void* http_file_get(void* userdata);
void http_download_cancel_processes(ProfWin *window);
void http_download_add_download(HTTPDownload *download);
void http_download_cancel_processes(ProfWin* window);
void http_download_add_download(HTTPDownload* download);
char *http_basename_from_url(const char *url);
char* http_basename_from_url(const char* url);
#endif