You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netsurf/frontends/atari/extract.php

11 lines
152 B

#!/usr/bin/php
<?
$lines = file("deskmenu.c");
foreach($lines as $line){
if(stripos($line, "static void __CDECL menu_") === 0){
echo $line;
}
}
?>