Skip to content

Instantly share code, notes, and snippets.

View 0xAF's full-sized avatar

Stanislav Lechev [0xAF] 0xAF

View GitHub Profile
@0xAF
0xAF / future.c
Created January 20, 2020 22:30 — forked from Geal/future.c
small future and promise library in C with pthreads
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include <stdbool.h>
#include <time.h>
#include <stdarg.h>
#include <string.h>
#include "future.h"