Hi Marco,
if you take a look at the example code sdbench and mfs_benchmark.c there are operations with file.
There are no operations as fopen, fclose etc., they were replaced by new ones :
For example
operation for open file
file_ptr = open(file_name, write_mode);
operation for write
wr = write(file_ptr, data_ptr, block_size);
operation for read
rd = read(file_ptr, data_ptr, block_size);
operation for close
close(file_ptr);
I hope this helps.
Regards!
Iva