forked from emscripten-core/emscripten
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemscripten_fs_api_browser2.c
55 lines (45 loc) · 1.12 KB
/
emscripten_fs_api_browser2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2015 The Emscripten Authors. All rights reserved.
// Emscripten is available under two separate licenses, the MIT license and the
// University of Illinois/NCSA Open Source License. Both these licenses can be
// found in the LICENSE file.
#include <assert.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <emscripten.h>
#include <assert.h>
#include <string.h>
#include <SDL/SDL.h>
#include "SDL/SDL_image.h"
int get_count = 0;
void onLoaded(const char* file) {
printf("onLoaded %s\n", file);
assert(strcmp(file, "/tmp/test.html") == 0);
FILE * f = fopen(file, "r");
assert(f);
printf("exists: %s\n", file);
int c = fgetc(f);
assert(c != EOF && "file empty!");
fclose(f);
if (++get_count == 2) {
exit(0);
}
}
void onError(const char* file) {
printf("error...\n");
assert(false);
}
int main() {
emscripten_async_wget(
"http://localhost:8888/test.html",
"/tmp/test.html",
onLoaded,
onError);
// get another file to the same place
emscripten_async_wget(
"http://localhost:8888/test.js",
"/tmp/test.html",
onLoaded,
onError);
return 99;
}