The way of calling the function cmph_search was fixed in the file README.t2t

This commit is contained in:
fc_botelho 2005-02-17 18:20:14 +00:00
parent 60819c778e
commit 670212dbf8
3 changed files with 4 additions and 3 deletions

View File

@ -1 +0,0 @@
<a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=96251&amp;type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" /> </a>

View File

@ -82,7 +82,7 @@ Using cmph is quite simple. Take a look.
//Find key //Find key
const char *key = "sample key"; const char *key = "sample key";
unsigned int id = cmph_search(hash, key); unsigned int id = cmph_search(hash, key, strlen(key));
//Destroy hash //Destroy hash
cmph_destroy(hash); cmph_destroy(hash);
@ -107,7 +107,7 @@ Using cmph is quite simple. Take a look.
//Find key //Find key
const char *key = "sample key"; const char *key = "sample key";
unsigned int id = cmph_search(hash, key); unsigned int id = cmph_search(hash, key, strlen(key));
//Destroy hash //Destroy hash
cmph_destroy(hash); cmph_destroy(hash);

View File

@ -4,6 +4,7 @@ txt2tags -t html -i CHM.t2t -o chm.html
txt2tags -t html -i COMPARISON.t2t -o comparison.html txt2tags -t html -i COMPARISON.t2t -o comparison.html
txt2tags -t html -i GPERF.t2t -o gperf.html txt2tags -t html -i GPERF.t2t -o gperf.html
txt2tags -t html -i FAQ.t2t -o faq.html txt2tags -t html -i FAQ.t2t -o faq.html
txt2tags -t html -i CONCEPTS.t2t -o concepts.html
txt2tags -t txt --mask-email -i README.t2t -o README txt2tags -t txt --mask-email -i README.t2t -o README
txt2tags -t txt -i BMZ.t2t -o BMZ txt2tags -t txt -i BMZ.t2t -o BMZ
@ -11,3 +12,4 @@ txt2tags -t txt -i CHM.t2t -o CHM
txt2tags -t txt -i COMPARISON.t2t -o COMPARISON txt2tags -t txt -i COMPARISON.t2t -o COMPARISON
txt2tags -t txt -i GPERF.t2t -o GPERF txt2tags -t txt -i GPERF.t2t -o GPERF
txt2tags -t txt -i FAQ.t2t -o FAQ txt2tags -t txt -i FAQ.t2t -o FAQ
txt2tags -t txt -i CONCEPTS.t2t -o CONCEPTS