Skip to content

Instantly share code, notes, and snippets.

@Cewein
Forked from quantumsheep/flen.c
Last active December 9, 2018 18:13
Show Gist options
  • Save Cewein/87fdab476a3a40629156388837cc2357 to your computer and use it in GitHub Desktop.
Save Cewein/87fdab476a3a40629156388837cc2357 to your computer and use it in GitHub Desktop.
Calculate a file length. The file need to be in `rb` mode (reading and binary mode)
#include <stdio.h>
int flen(FILE *f)
{
int len;
fseek(f, 0, SEEK_END);
len = ftell(f);
rewind(f)
return len;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment