shithub: moonfish

ref: c173769001b5bd4ba69ea1fe6bcb8f984165cdf6
dir: /tools/tools.h/

View raw version
/* moonfish is licensed under the AGPL (v3 or later) */
/* copyright 2023, 2024 zamfofex */

#ifndef MOONFISH_TOOLS
#define MOONFISH_TOOLS

#include <stdio.h>

int moonfish_spawn(char *argv0, char **argv, int *in, int *out);
char *moonfish_next(FILE *file);
char *moonfish_wait(FILE *file, char *name);

#endif