blob: a95f4f53d4b8b864ed1cb79425b0abf39cfe6a63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef READCLOSE_H
#define READCLOSE_H
#include "stralloc.h"
#include "close.h"
extern int readclose_append(int,stralloc *,unsigned int);
extern int readclose(int,stralloc *,unsigned int);
#define slurpclose readclose /* backwards compatibility */
extern int openreadclose(const char *,stralloc *,unsigned int);
#endif
|