コード例 #1
0
ファイル: simple.c プロジェクト: emacsmirror/clang-lookup
// A little test for clang-lookup
int foo(int abc)
{
    // nested scopes, hiding names
    {
        int abc = 0;
        f_void_int( abc );
    }

    return f_int_int( abc );
}
コード例 #2
0
ファイル: void_p.c プロジェクト: ricleal/CppTests
int main_cfunc(void) {
	// your code goes here
	int *p;
	int i = 30;
	p = &i;

	f_int(p);
	f_void_int(p);
	f_void_void(p);

	return 0;
}