X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=lib%2Fwordsplit.c;h=6e2e792edd71b9ed62989c6cb7c7aefe4613f661;hb=a0de81cbe1f6282fdc13f6e61d07ebf0ae1c0f4c;hp=eea9476230166816e39b152ec79d8925df7593d7;hpb=b65c2563a8a425593f91dfcb82ede8cf53fec6cd;p=libucw.git diff --git a/lib/wordsplit.c b/lib/wordsplit.c index eea94762..6e2e792e 100644 --- a/lib/wordsplit.c +++ b/lib/wordsplit.c @@ -1,18 +1,19 @@ /* * Sherlock Library -- Word Splitting * - * (c) 1997 Martin Mares, + * (c) 1997 Martin Mares + * + * This software may be freely distributed and used according to the terms + * of the GNU Lesser General Public License. */ -#include - -#include "lib.h" -#include "string.h" +#include "lib/lib.h" +#include "lib/chartype.h" int wordsplit(byte *src, byte **dst, uns max) { - int cnt = 0; + uns cnt = 0; for(;;) {