|
|
1.1 ! root 1: bcopy(b1, b2, length) ! 2: char *b1, *b2; ! 3: { ! 4: memcpy(b2, b1, length); ! 5: } ! 6: ! 7: bcmp(b1, b2, length) ! 8: char *b1, *b2; ! 9: { ! 10: return(memcmp(b1, b2, length)); ! 11: } ! 12: ! 13: bzero(b, length) ! 14: char *b; ! 15: { ! 16: memset(b, 0, length); ! 17: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.