2011-05-26 17:18:42 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
2014-11-13 14:14:20 +00:00
|
|
|
#include <unistd.h>
|
2013-03-05 20:46:48 +00:00
|
|
|
|
2011-05-26 17:18:42 +00:00
|
|
|
#include "../text.h"
|
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
concat(FILE *fp1, const char *s1, FILE *fp2, const char *s2)
|
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
2014-11-13 14:14:20 +00:00
|
|
|
ssize_t n;
|
2011-05-26 17:18:42 +00:00
|
|
|
|
2014-11-13 14:14:20 +00:00
|
|
|
while ((n = read(fileno(fp1), buf, sizeof buf)) > 0) {
|
|
|
|
if (write(fileno(fp2), buf, n) != n)
|
2011-05-26 17:18:42 +00:00
|
|
|
eprintf("%s: write error:", s2);
|
2013-03-05 20:46:48 +00:00
|
|
|
}
|
2014-11-13 14:14:20 +00:00
|
|
|
if (n < 0)
|
2011-05-26 17:18:42 +00:00
|
|
|
eprintf("%s: read error:", s1);
|
|
|
|
}
|