X-Git-Url: https://git.distorted.org.uk/~mdw/anag/blobdiff_plain/345f33ea7a273e3196075b07fcc0bc28714793a5..650bb9da7cf5b677960c03e0a6a5616d48340845:/anagram.c diff --git a/anagram.c b/anagram.c index c422506..d4eb5e7 100644 --- a/anagram.c +++ b/anagram.c @@ -1,13 +1,11 @@ /* -*-c-*- * - * $Id: anagram.c,v 1.2 2004/04/08 01:36:19 mdw Exp $ - * * Matches anagrams and subgrams * * (c) 2001 Mark Wooding */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of Anag: a simple wordgame helper. * @@ -15,12 +13,12 @@ * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * Anag is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with Anag; if not, write to the Free Software Foundation, * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. @@ -78,9 +76,12 @@ static int n_gram(node *nn, const char *p, size_t sz) q = p + sz; while (p < q) { i = (unsigned char)*p++; - if (!f[i]) + if (f[i]) + f[i]--; + else if (f['.']) + f['.']--; + else return (0); - f[i]--; } return (1); }