c-md/srcs/transpile/code.c
2026-01-12 00:48:09 +01:00

12 lines
187 B
C

#include <stdio.h>
#include "internal/transpile_internal.h"
int8_t
handle_code_line(t_state *s, char *line)
{
if (0 > fputs(line, s->out))
return (1);
s->dst_line++;
return (0);
}