mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Switch to downloading a binary file.
This commit is contained in:
parent
ae09b04365
commit
be07fec2da
13
http_test.c
13
http_test.c
@ -3,11 +3,16 @@
|
||||
|
||||
int main()
|
||||
{
|
||||
char url[]="http://unicodesnowmanforyou.com/";
|
||||
char url[]="http://buildbot.libretro.com/nightly/android/latest/armeabi-v7a/2048_libretro.so.zip";
|
||||
char* urlfilename=NULL;
|
||||
http_parse_url(url, &urlfilename);
|
||||
int len;
|
||||
char * out;
|
||||
http_retcode status=http_get(urlfilename, &out, NULL, NULL);
|
||||
FILE * f;
|
||||
http_parse_url(url, &urlfilename);
|
||||
http_retcode status=http_get(urlfilename, &out, &len, NULL);
|
||||
if (status<0) printf("%i - failure...\n", status);
|
||||
else printf("%i - success - %s\n", status, out);
|
||||
else printf("%i - success\n", status);
|
||||
f=fopen("2048_libretro.so.zip", "wb");
|
||||
fwrite(out, 1,len, f);
|
||||
fclose(f);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user