if (srcbloc == NULL) {
fprintf(stderr, "warning!: memrip source is null!\n");
exit(1);
}
if (destbloc == NULL) {
destbloc = malloc(len);
}
if (srcbloc == destbloc) {
fprintf(stderr, "warning!: srcbloc = destbloc\n");
exit(1);
}
if (offset < 0) {
fprintf(stderr, "warning!: offset = %i\n", offset);
}
if (len < 0) {
fprintf(stderr, "warning!: len = %i\n", len);
}
I am wondering if all of the if statements will be tested when this program is run?