Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > 589b38626859682dda0b4289ae4806af > files > 53

coccinelle-examples-1.0.7-2.mga7.i586.rpm

@initialize:python@
@@
first = 0

@first_fct@
type T;
identifier f;
position p;
@@

T f@p (...) {...}

@script:python@
p << first_fct.p;
@@

if p[0].line > first and first == 0:
   first = p[0].line
else:
   cocci.include_match(False)

@@
type T;
identifier f;
position first_fct.p;
@@

+#include <foo.h>

T f@p (...) {...}