2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
/* Yeah. We have copyright on this one. Sure. */
|
|
|
|
|
2006-01-12 03:17:49 +07:00
|
|
|
void rio_pcicopy(char *from, char *to, int amount)
|
2005-04-17 05:20:36 +07:00
|
|
|
{
|
2006-01-12 03:17:49 +07:00
|
|
|
while (amount--)
|
|
|
|
*to++ = *from++;
|
2005-04-17 05:20:36 +07:00
|
|
|
}
|