#include #include void prtastr(const char* s, int fd, int n){ int j,k; for(k = 0; k < strlen(s); k++){ write(fd,&s[k], 1); for(j = 0; j < n; j++); } return; }