22 lines
360 B
C
22 lines
360 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "test_util.h"
|
|
|
|
OPTNONE int main(void) {
|
|
char *p = malloc(16);
|
|
if (!p) {
|
|
return 1;
|
|
}
|
|
memset(p, 'a', 16);
|
|
free(p);
|
|
for (size_t i = 0; i < 16; i++) {
|
|
printf("%x\n", p[i]);
|
|
if (p[i] != '\0') {
|
|
return 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|