aboutsummaryrefslogtreecommitdiff
path: root/8.1/filecopy.c
diff options
context:
space:
mode:
authorsinanmohd <sinan@firemail.cc>2023-05-15 15:55:53 +0530
committersinanmohd <sinan@firemail.cc>2023-05-15 15:55:53 +0530
commit2a5a57e16f216a9bf8933345014c91f198bb1215 (patch)
treebd70e0ab14d343206e6a2935f1219d7bea28513a /8.1/filecopy.c
parent95b4f909ac709c098fb0ff59d3638826baaae0c0 (diff)
8.1: initial commit
Diffstat (limited to '8.1/filecopy.c')
-rw-r--r--8.1/filecopy.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/8.1/filecopy.c b/8.1/filecopy.c
new file mode 100644
index 0000000..b35ccbd
--- /dev/null
+++ b/8.1/filecopy.c
@@ -0,0 +1,16 @@
+#include <stdio.h>
+#include <sys/stat.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include "filecopy.h"
+#include "error.h"
+
+void filecopy(int ifd, int ofd)
+{
+ ssize_t n;
+ char buff[BUFSIZ];
+
+ while ((n = read(ifd, buff, BUFSIZ)) > 0)
+ if (write(ofd, buff, n) != n)
+ error("cat: write error");
+}