4-variable-simplifier/string/print.c
2026-04-25 16:00:10 -04:00

12 lines
156 B
C

#include <debug.h>
#include "struct.h"
#include "print.h"
void string_print(
struct string* this)
{
fwrite(this->data, 1, this->len, stdout);
}