If you want the public to return something, you use return, for example:
[pawn]public IsHeThere( playerid )
{
if( strcmp( IsHe(playerid), "Yes", 0 ) )
{
DoSomething();
}
}
public IsHe(playerid)
{
if( IsThere( playerid ) ) return "Yes";
else return "No";
}[/pawn]