Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/src/increasebuffer.pl

Source at commit 1322 created 12 years 8 months ago.
By meklort, Add doxygen to utils folder
1# Since the internal token buffer of a generated flex file is hardcoded
2# to 16K, this script is used to increase the buffer size of a flex
3# generated scanner to 256K.
4while (<>)
5{
6s/YY_BUF_SIZE 16384/YY_BUF_SIZE 262144/g;
7 s/YY_READ_BUF_SIZE 8192/YY_READ_BUF_SIZE 262144/g;
8print $_;
9}
10

Archive Download this file

Revision: 1322