<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/perl -w
open LOOKUP, "FunctionLookupImpl.cpp" or die "Can't open lookup file";
my $func = "";
while (&lt;LOOKUP&gt;) {
    if (/insertFunction/) {
        $func = "";
    } else {
        print $func;
    }
    if (/fn:/) {
        $func = $_;
    }
    
}
</pre></body></html>