Guest User

Untitled

a guest
Jan 23rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. off_t pos = lseek(in, -byte, SEEK_END);
  2. while ((inRead = read(in, buffer, byte))) {
  3. printf("bla");
  4. pos = lseek(in, -byte, SEEK_CUR);
  5. write(out, buffer, inRead);
  6. }
Add Comment
Please, Sign In to add comment