#include <stdio.h>
void info(const char *message)
{
if (NULL == message)
{
return; // return nothing, skip the code below, stop running the function
}
fprintf(stderr, "%s:%d %s\n", __FILE__, __LINE__, message);
}
int main(void)
{
info(NULL);
return 0;
}
/*
run:
*/