riopcicopy.c 149 B

12345678
  1. /* Yeah. We have copyright on this one. Sure. */
  2. void rio_pcicopy( char *from, char *to, int amount)
  3. {
  4. while ( amount-- )
  5. *to++ = *from++;
  6. }