summaryrefslogtreecommitdiff
path: root/include/open.h
blob: 2629a4df8315d6710566ed20bb540c266f9e6b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef OPEN_H
#define OPEN_H

/**
  * @file open.h
  * @authors djb, feh
  * @ref s/qmail
  */

int open_read(const char *);
int open_excl(const char *);
int open_append(const char *);
int open_trunc(const char *);
int open_write(const char *);

#endif