source: tags/20081106/unix/sparse.c @ 209

Last change on this file since 209 was 203, checked in by nanardon, 15 years ago
  • add sparse file frame
  • Property svn:eol-style set to native
File size: 173 bytes
Line 
1#include <stdio.h>
2
3int main(void) {
4    FILE * foo = fopen("/tmp/sparsed", "w+");
5    fseek(foo, 1024*1024, SEEK_SET);
6    fprintf(foo, "%s", "coucou");
7    fclose(foo);
8}
Note: See TracBrowser for help on using the repository browser.