diff --git a/LOGO.html b/LOGO.html deleted file mode 100644 index dc245a8..0000000 --- a/LOGO.html +++ /dev/null @@ -1 +0,0 @@ -SourceForge.net Logo diff --git a/README.t2t b/README.t2t index d5fe5a9..00cd139 100644 --- a/README.t2t +++ b/README.t2t @@ -82,7 +82,7 @@ Using cmph is quite simple. Take a look. //Find key const char *key = "sample key"; - unsigned int id = cmph_search(hash, key); + unsigned int id = cmph_search(hash, key, strlen(key)); //Destroy hash cmph_destroy(hash); @@ -107,7 +107,7 @@ Using cmph is quite simple. Take a look. //Find key const char *key = "sample key"; - unsigned int id = cmph_search(hash, key); + unsigned int id = cmph_search(hash, key, strlen(key)); //Destroy hash cmph_destroy(hash); diff --git a/gendocs b/gendocs index e7c5e3e..7885281 100755 --- a/gendocs +++ b/gendocs @@ -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 GPERF.t2t -o gperf.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 -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 GPERF.t2t -o GPERF txt2tags -t txt -i FAQ.t2t -o FAQ +txt2tags -t txt -i CONCEPTS.t2t -o CONCEPTS