mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-22 22:41:30 +03:00
11 lines
152 B
PHP
Executable File
11 lines
152 B
PHP
Executable File
#!/usr/bin/php
|
|
<?
|
|
$lines = file("deskmenu.c");
|
|
|
|
foreach($lines as $line){
|
|
if(stripos($line, "static void __CDECL menu_") === 0){
|
|
echo $line;
|
|
}
|
|
}
|
|
?>
|