| prov:value
| - The fread() function call looks like this: fread(ptr, size, count, in), so if you had a file handle named input, obtained by calling, for example, FILE *input = fopen(input.wav, rb);, and you have a buffer called ptr, obtained, for example, by char *ptr = malloc(4096);, you could read the first three 4-byte elements of the file (which, according to the document you linked, are a signature, a s
|