Source code

Revision control

Copy as Markdown

Other Tools

#include "structures.h"
int my_strlen(const char* s)
{
return strlen(s); // warning
}
int bad_caller()
{
const char* s = nullptr;
return my_strlen(s);
}