Tezc 35fe96f0b0
doc fix (#30)
uri test, doc, posix define
2021-02-05 16:35:10 +03:00
..
2021-02-05 16:35:10 +03:00
2021-02-03 08:09:50 +03:00
2021-02-05 16:35:10 +03:00
2021-02-05 16:35:10 +03:00
2020-11-16 03:58:37 +03:00
2021-02-05 16:35:10 +03:00

Time functions

Overview

  • Time and sleep functions for Unixes and Windows
Usage

#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;
}