diff guess.scm @ 3:70e2c306231e

- implemented dfa utility functions. - added dfa.c. - rewrote guess functions for ar, gr, hw and tr scripts with dfa utilities. - guess functions for cjk scripts too.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Thu, 12 Jun 2008 20:20:43 +0900
parents 754a4550c64e
children
line wrap: on
line diff
--- a/guess.scm	Wed Jun 11 00:11:30 2008 +0900
+++ b/guess.scm	Thu Jun 12 20:20:43 2008 +0900
@@ -156,6 +156,8 @@
     (lambda ()
       (print "/* State transition table for character code guessing */")
       (print "/* This file is automatically generated by guess.scm */")
+      (print "")
+      (print "#include \"dfa.h\"")
       (newline)
       (for-each emit-dfa-table (all-dfas))))
   0)