2014-12-21 00:21:40 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include "http_lib.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2014-12-21 19:25:35 +00:00
|
|
|
char url[]="http://buildbot.libretro.com/nightly/android/latest/armeabi-v7a/2048_libretro.so.zip";
|
2014-12-21 00:21:40 +00:00
|
|
|
char* urlfilename=NULL;
|
2014-12-21 19:25:35 +00:00
|
|
|
int len;
|
2014-12-21 00:21:40 +00:00
|
|
|
char * out;
|
2014-12-21 19:25:35 +00:00
|
|
|
FILE * f;
|
|
|
|
http_parse_url(url, &urlfilename);
|
|
|
|
http_retcode status=http_get(urlfilename, &out, &len, NULL);
|
2014-12-21 00:21:40 +00:00
|
|
|
if (status<0) printf("%i - failure...\n", status);
|
2014-12-21 19:25:35 +00:00
|
|
|
else printf("%i - success\n", status);
|
|
|
|
f=fopen("2048_libretro.so.zip", "wb");
|
|
|
|
fwrite(out, 1,len, f);
|
|
|
|
fclose(f);
|
2014-12-21 00:21:40 +00:00
|
|
|
}
|