Author: stepan Date: 2009-11-20 20:03:46 +0100 (Fri, 20 Nov 2009) New Revision: 622
Modified: trunk/openbios-devel/kernel/dict.c trunk/openbios-devel/kernel/include/dict.h Log: findsemis_wordlist is only used by findsemis() so let's remove it from the "API"
Signed-off-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/openbios-devel/kernel/dict.c =================================================================== --- trunk/openbios-devel/kernel/dict.c 2009-11-20 18:54:38 UTC (rev 621) +++ trunk/openbios-devel/kernel/dict.c 2009-11-20 19:03:46 UTC (rev 622) @@ -128,7 +128,7 @@ * from the NFA. */
-ucell findsemis_wordlist(ucell xt, ucell wordlist) +static ucell findsemis_wordlist(ucell xt, ucell wordlist) { ucell tmplfa, nextlfa, nextcfa;
Modified: trunk/openbios-devel/kernel/include/dict.h =================================================================== --- trunk/openbios-devel/kernel/include/dict.h 2009-11-20 18:54:38 UTC (rev 621) +++ trunk/openbios-devel/kernel/include/dict.h 2009-11-20 19:03:46 UTC (rev 622) @@ -41,7 +41,6 @@ void dump_header(dictionary_header_t *header); ucell fstrlen(ucell fstr); void fstrncpy(char *dest, ucell src, unsigned int maxlen); -ucell findsemis_wordlist(ucell xt, ucell wordlist); ucell findsemis(ucell xt); ucell findxtfromcell_wordlist(ucell incell, ucell wordlist); ucell findxtfromcell(ucell incell);