Home | History | Annotate | Download | only in src

Lines Matching defs:hdr

932 	unsigned char hdr[5];
934 hdr[0] = COMMAND;
935 hdr[1] = (lno >> 24) & 0xFF;
936 hdr[2] = (lno >> 16) & 0xFF;
937 hdr[3] = (lno >> 8) & 0xFF;
938 hdr[4] = lno & 0xFF;
940 return (write(fd, hdr, 5) == 5 && write(fd, cmd, n) == n);