12 lines
187 B
C
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);
|
|
}
|