Skip to content

Instantly share code, notes, and snippets.

@christian-mann
christian-mann / lambda.c
Created July 17, 2015 03:08
Lambdas in C
#include <setjmp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef C_LAMBDA
#define C_LAMBDA
typedef struct {
void *addr;