show/hide this revision's text 2 null -> NULL
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;
}
show/hide this revision's text 1
char somestring[] = "Send money!\n";
char *copy = strdup(something);

if (copy == null) {
    // error
}

or just put this logic in a separate function xstrdup:

char * xstrdup(const char *src) 
{
    char *copy = strdup(src);

    if (copy == null) {
       abort();
    }

    return copy;
}