0
0
Fork 0
mirror of https://github.com/nccgroup/thetick.git synced 2023-12-14 04:33:00 +01:00
thetick/src/file.h
2019-09-23 15:09:37 +02:00

18 lines
404 B
C

/*
* The Tick, a Linux embedded backdoor.
*
* Released as open source by NCC Group Plc - http://www.nccgroup.com/
* Developed by Mario Vilas, mario.vilas@nccgroup.com
* http://www.github.com/nccgroup/thetick
*
* See the LICENSE file for further details.
*/
#ifndef FILE_H
#define FILE_H
#include <sys/types.h>
int copy_stream(int source, int destination, ssize_t count);
#endif /* FILE_H */