lambda-calculus/parse/istream/string/free.c
2025-01-13 20:36:07 -06:00

21 lines
258 B
C

#include <assert.h>
#include <unistd.h>
#include <debug.h>
#include "struct.h"
#include "free.h"
void free_string_istream(
struct istream* super)
{
ENTER;
/* struct string_istream* this = (void*) super;*/
TODO;
EXIT;
}