mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
18 lines
280 B
C
Vendored
18 lines
280 B
C
Vendored
#include <time.h>
|
|
|
|
int add(int a, int b) {
|
|
return a + b;
|
|
}
|
|
|
|
double c_test() {
|
|
clock_t before = clock();
|
|
|
|
int a = 0;
|
|
for (int i=0; i<1000000; i++) {
|
|
a = add(a, 1);
|
|
}
|
|
|
|
clock_t after = clock();
|
|
|
|
return (double)(after - before) / CLOCKS_PER_SEC;
|
|
}
|