Skip to content

Instantly share code, notes, and snippets.

@ThirteenFish
ThirteenFish / codec.c
Created November 17, 2015 11:01
Fun with C11 _Generic()
#include <stdio.h>
#include <string.h>
typedef struct {int v;} volume;
typedef struct {int s;} onoff;
struct settings {
int a;
char * b;
volume v;