You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
362 B
C
16 lines
362 B
C
#include "byte.h"
|
|
#include "errmsg.h"
|
|
|
|
int main() {
|
|
char buf[4096];
|
|
carp("both aligned");
|
|
byte_copy(buf,16,"this is a test!\n");
|
|
carp("destination aligned, source unaligned");
|
|
byte_copy(buf,1000,buf+1);
|
|
carp("destination unaligned, source aligned");
|
|
byte_copy(buf+1,1000,buf);
|
|
carp("both unaligned");
|
|
byte_copy(buf+1,1000,buf+3);
|
|
return 0;
|
|
}
|