2025-12-11 13:08:08 +01:00

14 lines
211 B
C

#include <time.h>
#include "stoppuhr.h"
static clock_t zeitStempel = 0;
void starteUhr()
{
zeitStempel = clock();
}
double messeZeitInSek()
{
return (double)(clock() - zeitStempel) / CLOCKS_PER_SEC;
}