This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define JSMN_PARENT_LINKS | |
#include "jsmn.h" | |
#define MAX_TOK 50 |
This file contains 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
#include <stdio.h> | |
#include <time.h> | |
#include <stdlib.h> | |
#include "pcg/pcg_basic.h" | |
struct timespec diff_t(struct timespec, struct timespec); | |
int main(void) { | |
pcg32_srandom(time(NULL) ^ (intptr_t)&printf, rand()); | |
struct timespec start, end; |