X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fidentifier.c;h=a52944e2757a11db7ace38273283d081581d0375;hb=7d3713dd11dc0f4c5ce9c62ea512cdea38b4e80d;hp=a95a157d78cd0f0c2dcfe1844c152ec88782f4e5;hpb=f5c108becd49d78f4898cab11352291f5689d24e;p=pspp-builds.git diff --git a/src/data/identifier.c b/src/data/identifier.c index a95a157d..a52944e2 100644 --- a/src/data/identifier.c +++ b/src/data/identifier.c @@ -1,20 +1,18 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. Copyright (C) 1997-9, 2000, 2005 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or - modify 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. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program 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. + This program 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 this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ /* This file is concerned with the definition of the PSPP syntax, NOT the @@ -76,11 +74,19 @@ lex_id_get_length (struct substring string) and those characters are identical to KEYWORD. */ bool lex_id_match (struct substring keyword, struct substring token) +{ + return lex_id_match_n (keyword, token, 3); +} + +/* Returns true if TOKEN is a case-insensitive match for at least + the first N characters of KEYWORD. */ +bool +lex_id_match_n (struct substring keyword, struct substring token, size_t n) { size_t token_len = ss_length (token); size_t keyword_len = ss_length (keyword); - if (token_len >= 3 && token_len < keyword_len) + if (token_len >= n && token_len < keyword_len) return ss_equals_case (ss_head (keyword, token_len), token); else return ss_equals_case (keyword, token);