summaryrefslogtreecommitdiffstats
path: root/loader/misc.h
blob: ce4b39b731ea24c7e6fe0b3ab9de94dc6fafa3a8 (plain)
1
2
3
4
5
6
7
8
#ifndef H_LOADER_MISC_H
#define H_LOADER_MISC_H

int copyFile(char * source, char * dest);
int copyFileFd(int infd, char * dest);
char * readLine(FILE * f);

#endif