Exemple #1
0
// the public foo()
const char * foo()
{
    return foo_impl();
}
Exemple #2
0
void platform::foo( /* ... */ ) { foo_impl( /* ... */ ) ; }
Exemple #3
0
// test foo_impl()
TEST(ut_foo_impl, return_string_check) {
    ASSERT_STREQ("foo", foo_impl() );
}