blob: 2fabd26e4c4a9f4dcc3d90b10ec8dbaca60d1091 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef RECIPIENTS_H
#define RECIPIENTS_H
#include <sys/types.h>
extern int recipients_init(void);
extern int recipients(char *, int);
extern ssize_t safewrite(int, char *, int);
#endif
|