예제 #1
0
파일: foo.cpp 프로젝트: thinapple/z
// the public foo()
const char * foo()
{
    return foo_impl();
}
예제 #2
0
파일: main.cpp 프로젝트: CCJY/coliru
void platform::foo( /* ... */ ) { foo_impl( /* ... */ ) ; }
예제 #3
0
파일: foo.cpp 프로젝트: thinapple/z
// test foo_impl()
TEST(ut_foo_impl, return_string_check) {
    ASSERT_STREQ("foo", foo_impl() );
}