Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 86875e5f16bea6b454c492e84ceda4db > files > 34

coccinelle-examples-0.2.3-0.rc6.3.fc14.x86_64.rpm

/* Example provided by: Flavien@lebarbe.net */


int foo(int x) {
    /* {{coccinelle:skip_start}} */
#ifdef PLATFORM_A
    while(func_a()) {
#endif
    /* {{coccinelle:skip_end}} */
#ifdef PLATFORM_B
    while(func_b()) {
#endif
        do_stuff();
    }
}


void main()
{
}