docs
[mirrors/Programs.git] / c / drivespeed.c
CommitLineData
79a323cb
H
1#include <stdio.h>
2#include <stdlib.h>
3
4int main() {
5
6char drive[] = "/dev/hdc";
7int stime = time(NULL);
8printf("%d\n", stime);
9system("cat /dev/hdc > /dev/null");
10stime = time(NULL);
11printf("%d\n", stime);
12return(0);
13
14}
This page took 0.201088 seconds and 4 git commands to generate.