GIT.Harvie.CZ
/
mirrors
/
Programs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Nekobee
[mirrors/Programs.git]
/
c
/
drivespeed.c
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
int
main
() {
5
6
char
drive
[] =
"/dev/hdc"
;
7
int
stime
=
time
(
NULL
);
8
printf
(
"%d
\n
"
,
stime
);
9
system
(
"cat /dev/hdc > /dev/null"
);
10
stime
=
time
(
NULL
);
11
printf
(
"%d
\n
"
,
stime
);
12
return
(
0
);
13
14
}
This page took
0.265966 seconds
and
4
git commands to generate.