summaryrefslogtreecommitdiffstats
path: root/loader2/loadermisc.h
blob: 3e673d6e5dfb8c6fd4255c71acef0e2a04567a24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef H_LOADER_MISC_H
#define H_LOADER_MISC_H
#include <stdio.h>
#include <stdarg.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);
char * sdupprintf(const char *format, ...);

#endif