NetSurf
extract.php
Go to the documentation of this file.
1#!/usr/bin/php
2<?
3$lines = file("deskmenu.c");
4
5foreach($lines as $line){
6 if(stripos($line, "static void __CDECL menu_") === 0){
7 echo $line;
8 }
9}
10?>
$lines
Definition: extract.php:3