You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tlang/source/tlang/testing/file_io.c

8 lines
152 B
C

#include<unistd.h>
int ctr = 2;
unsigned int doWrite(unsigned int fd, unsigned char* buffer, unsigned int count)
{
write(fd, buffer, count+ctr);
}