summaryrefslogtreecommitdiffstats
path: root/readtextfile.h
blob: bc91e802a5f1dc4595d56abdbc0991de2ab3048d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef REPREPRO_READTEXTFILE
#define REPREPRO_READTEXTFILE

#ifndef REPREPRO_ERROR_H
#include "error.h"
#warning "What's hapening here?"
#endif
#ifndef REPREPRO_GLOBALS_H
#include "globals.h"
#warning "What's hapening here?"
#endif

retvalue readtextfilefd(int, const char *, /*@out@*/char **, /*@null@*//*@out@*/size_t *);
retvalue readtextfile(const char *, const char *, /*@out@*/char **, /*@null@*//*@out@*/size_t *);

#endif