This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//gcc -std=c99 -Wall -Wextra -Wpedantic -Wshadow main.c | |
#define _POSIX_C_SOURCE 199309L | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> //sleep(); | |
#include <time.h> | |
void printTimeDiff(struct timespec *tm_start, struct timespec *tm_stop) |