Skip to content

Instantly share code, notes, and snippets.

@tnguyen21
tnguyen21 / tspl.c
Created August 22, 2025 22:47 — forked from VictorTaelin/tspl.c
TSPL in C - Simple Parser Library - λ-Calculus Demo Parser
#include <ctype.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct {
const char* input;
size_t index;