static void BM_stdio_fopen_fgets_fclose_locking(benchmark::State& state) { FopenFgetsFclose(state, false); }
void BM_stdio_fopen_fgets_fclose_no_locking(benchmark::State& state) { FopenFgetsFclose(state, true); }
void BM_stdio_fopen_fgets_fclose_no_locking::Run(int iters) { StartBenchmarkTiming(); FopenFgetsFclose(iters, true); StopBenchmarkTiming(); }