From bb1f5a21195cf597e32ccd0dd588498663a4db54 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Sun, 1 Jul 2007 16:41:42 +0000 Subject: Ok...the name c++filt is taken, g++ comes with a name-damangler that's called that, also good to know, but annoying. --- src/c++filt/c++filt.l | 62 --------------------------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 src/c++filt/c++filt.l (limited to 'src/c++filt/c++filt.l') diff --git a/src/c++filt/c++filt.l b/src/c++filt/c++filt.l deleted file mode 100644 index af12cac..0000000 --- a/src/c++filt/c++filt.l +++ /dev/null @@ -1,62 +0,0 @@ -%{ -# include - -int nBC = 0; -%} - -%s hasT -%x inWith -%x inT -%option noyywrap nounput batch - -%% - -"operator<<" { ECHO; } -"operator>>" { ECHO; } -"operator". { ECHO; } - -"<<" { ECHO; } -">>" { ECHO; } -" <<" { ECHO; } -" >>" { ECHO; } - -"" { ECHO; } - -\n+ { - BEGIN( INITIAL ); - nBC = false; - ECHO; -} - -" <" { ECHO; } - -"<" { - BEGIN( inT ); - printf("<...>"); - nBC++; -} - -"<" { - nBC++; - -} -[^<>]* { } -">" { - nBC--; - if( nBC == 0 ) - BEGIN( hasT ); -} - -" [with"[^\]]*"]" { } - -%% - -int main() -{ - yyin = stdin; - - yylex(); - - return 0; -} - -- cgit v1.2.3