This commit is contained in:
2020-06-01 19:14:01 -07:00
parent 87d2b360bb
commit 98e9bc5e70
15 changed files with 77 additions and 100 deletions

16
asana/fetch.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef ASANA_FETCH_H_
#define ASANA_FETCH_H_
#include <stdbool.h>
/**
* initialize libcurl
*/
bool asana_init();
/**
* cleanup libcurl before program end
*/
void asana_cleanup();
#endif // ASANA_FETCH_H_