Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
FILE *fi = fopen("filename","r");
fseek(fi,0,SEEK_END);
length = tell(fi);
rewind(fi);
int handle=open("filename"...);
length = lseek(handle,O,SEEK_END);
lseek(handle,0,SEEK_SET);