arudradey's picture
download
raw
541 Bytes
// Copyright 2012 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 <stdio.h>
int main() {
FILE *file = fopen("test/hello_world_file.txt", "rb");
if (!file) {
printf("cannot open file\n");
return 1;
}
while (!feof(file)) {
char c = fgetc(file);
if (c != EOF) {
putchar(c);
}
}
fclose (file);
return 0;
}

Xet Storage Details

Size:
541 Bytes
·
Xet hash:
d1ea98ce7c4376df063ed630ecdb410c0c71e6c781455d9a4a455b5e2c1f00e5

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.