Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > 92d2bfb5a363004a8a399eefe5c79f14 > files > 37

coccinelle-examples-1.0.0-0.rc4.2.fc16.i686.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()
{
}