1 2 3 4 5 6 7 8 9 10
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de> #ifndef PARSE_H #define PARSE_H #include <term.h> struct term *parse(const char *term); #endif