sc/time/README.md

24 lines
313 B
Markdown

### Time functions
### Overview
- Time and sleep functions for Posix and Windows
### Usage
```c
#include "sc_time.h"
#include <stdio.h>
int main(int argc, char *argv[])
{
uint64_t t = sc_time_ms();
sc_time_sleep(1000);
printf("%lu \n", (unsigned long) (sc_time_ms() - t));
return 0;
}
```