Files
pasm/file_utils.h
ALittlePatate a97fde9f86 first commit of the recode
70% of the code was re-writter from scratch
2024-01-18 16:01:04 +01:00

6 lines
131 B
C

#pragma once
#include <stdlib.h>
int read_script(const char *filename, char ***buf, size_t *lines);
void free_script(char **buf);