collate_range_cmp -> __collate_range_cmp

This commit is contained in:
Andrey A. Chernov 1996-10-31 04:32:27 +00:00
parent 38aa46cdf0
commit edcfa07284
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19276
3 changed files with 12 additions and 9 deletions

View File

@ -45,10 +45,11 @@ static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94";
#include <ctype.h>
#include <fnmatch.h>
#include <locale.h>
#include <string.h>
#include <stdio.h>
#include "collate.h"
#define EOS '\0'
static const char *rangematch __P((const char *, char, int));
@ -186,8 +187,8 @@ rangematch(pattern, test, flags)
if (flags & FNM_CASEFOLD)
c2 = tolower((unsigned char)c2);
if ( collate_range_cmp(c, test) <= 0
&& collate_range_cmp(test, c2) <= 0
if ( __collate_range_cmp(c, test) <= 0
&& __collate_range_cmp(test, c2) <= 0
)
ok = 1;
} else if (c == test)

View File

@ -70,13 +70,14 @@ static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93";
#include <dirent.h>
#include <errno.h>
#include <glob.h>
#include <locale.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "collate.h"
#define DOLLAR '$'
#define DOT '.'
#define EOS '\0'
@ -703,8 +704,8 @@ match(name, pat, patend)
++pat;
while (((c = *pat++) & M_MASK) != M_END)
if ((*pat & M_MASK) == M_RNG) {
if ( collate_range_cmp(CHAR(c), CHAR(k)) <= 0
&& collate_range_cmp(CHAR(k), CHAR(pat[1])) <= 0
if ( __collate_range_cmp(CHAR(c), CHAR(k)) <= 0
&& __collate_range_cmp(CHAR(k), CHAR(pat[1])) <= 0
)
ok = 1;
pat += 2;

View File

@ -45,10 +45,11 @@ static char sccsid[] = "@(#)fnmatch.c 8.2 (Berkeley) 4/16/94";
#include <ctype.h>
#include <fnmatch.h>
#include <locale.h>
#include <string.h>
#include <stdio.h>
#include "collate.h"
#define EOS '\0'
static const char *rangematch __P((const char *, char, int));
@ -186,8 +187,8 @@ rangematch(pattern, test, flags)
if (flags & FNM_CASEFOLD)
c2 = tolower((unsigned char)c2);
if ( collate_range_cmp(c, test) <= 0
&& collate_range_cmp(test, c2) <= 0
if ( __collate_range_cmp(c, test) <= 0
&& __collate_range_cmp(test, c2) <= 0
)
ok = 1;
} else if (c == test)