summaryrefslogtreecommitdiffstats
path: root/loader/misc.h
blob: 2958b4038c68d63ef38cc6147789c3b58f915c71 (plain)
1
2
3
4
5
6
7
8
9
#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);
int simpleStringCmp(const void * a, const void * b);

#endif