s/qmail
3.3.23
Next generation secure email transport
sqmail-3.3.23
src
fd_move.c
Go to the documentation of this file.
1
#include "
fd.h
"
2
3
int
fd_move
(
int
to
,
int
from
)
4
{
5
if
(to == from)
return
0;
6
if
(
fd_copy
(to,from) == -1)
return
-1;
7
close(from);
8
return
0;
9
}
to
substdio to
Definition:
qmail-qmqpc.c:55
fd_copy
int fd_copy(int, int)
Definition:
fd_copy.c:4
from
substdio from
Definition:
qmail-qmqpc.c:56
fd.h
fd_move
int fd_move(int to, int from)
Definition:
fd_move.c:3
Generated on Sat Jan 12 2019 23:42:27 for s/qmail by
1.8.13