Initial revision
[filters.git] / fudd.l
1 %e 2000
2 %p 5000
3 %n 1000
4 %k 500
5 %a 4000
6 %o 2000
7 BW [ ]
8 EW [ .,;!?]
9
10 %{
11 #include <stdio.h>
12
13 char buf[128];
14 %}
15
16 %%
17 "r" printf("w");
18 "l" printf("w");
19 "qu" printf("qw");
20 "th " printf("f ");
21 "th" printf("d");
22 "n." printf("n, uh-hah-hah-hah\. ");
23 "R" printf("W");
24 "L" printf("W");
25 "Qu" printf("Qw");
26 "QU" printf("QW");
27 "TH " printf("F ");
28 "TH" printf("D");
29 "Th" printf("D");
30 "N." printf("N, uh-hah-hah-hah\. ");
31
32 %%
33 main()
34 {
35 yylex();
36 return(0);
37 }
This page took 0.021388 seconds and 4 git commands to generate.