char somestring[] = "Send money!\n";
char *copy = strdup(something);
if (copy == nullNULL) {
// error
}
or just put this logic in a separate function xstrdup:
char * xstrdup(const char *src)
{
char *copy = strdup(src);
if (copy == nullNULL) {
abort();
}
return copy;
}
