Skip to content

Instantly share code, notes, and snippets.

@rdebath
rdebath / deadbeef.c
Last active January 30, 2022 20:43
Small but rather quick brainfuck interpreter.
/* This is the deadbeef brainfuck interpreter.
* Robert de Bath (c) 2014-2019 GPL v2 or later. */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <limits.h>
void run(void);