Login
7 branches 0 tags
Ben (X220/Parabola) Removed [bytecode-eval] nFunc 3a63edc 3 years ago 680 Commits
nujel / bin / misc.h
#ifndef NUJEL_BIN_MISC
#define NUJEL_BIN_MISC

#include "../lib/common.h"

void *loadFile(const char *filename, size_t *len);
void  saveFile(const char *filename, const void *buf, size_t len);

int  makeDir         (const char *name);
const char *tempFilename();

#endif