MESSAGE
ASSERT_STREQ(message, MESSAGE);
r = write(fd, MESSAGE + sent, msgsize - sent);
ASSERT_STREQ(message, MESSAGE);
const char MESSAGE[] = "Hello, World!\n";
const int msgsize = sizeof(MESSAGE);
r = write(fd, MESSAGE + sent, msgsize - sent);
printf("%s", MESSAGE);