mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-17 15:36:50 +00:00
7 lines
118 B
C
7 lines
118 B
C
|
|
#include <sys/sendfile.h>
|
||
|
|
|
||
|
|
void test(int to, int from, off_t offset, size_t ct)
|
||
|
|
{
|
||
|
|
sendfile(to, from, &offset, ct);
|
||
|
|
}
|