Ozan Tezcan 985a70824d
Fix clang-tidy warnings (#101)
Fix clang-tidy warnings
2022-12-07 00:55:43 +03:00
..
2022-12-07 00:55:43 +03:00
2022-08-20 18:56:21 +03:00
2022-08-20 18:56:21 +03:00
2022-08-20 18:56:21 +03:00
2022-08-20 18:56:21 +03:00

Time functions

Overview

  • Time and sleep functions for Posix 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;
}