Unix and Linux Discussions Tagged with comparison |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
13 |
20,390 |
Shell Programming and Scripting |
|
|
|
7 |
9,397 |
Shell Programming and Scripting |
|
|
|
12 |
18,042 |
Shell Programming and Scripting |
|
|
|
8 |
1,775 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
9,869 |
Shell Programming and Scripting |
|
|
|
1 |
2,488 |
Programming |
|
|
|
5 |
2,137 |
Shell Programming and Scripting |
|
|
|
7 |
6,599 |
Windows & DOS: Issues & Discussions |
|
|
|
2 |
2,504 |
Shell Programming and Scripting |
|
|
|
2 |
16,414 |
Shell Programming and Scripting |
|
|
|
33 |
57,259 |
Shell Programming and Scripting |
|
|
|
1 |
23,663 |
Shell Programming and Scripting |
|
|
|
2 |
3,393 |
Shell Programming and Scripting |
|
|
|
4 |
4,111 |
Shell Programming and Scripting |
|
|
|
4 |
5,347 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,524 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,644 |
Shell Programming and Scripting |
|
|
|
7 |
5,379 |
Shell Programming and Scripting |
|
|
|
2 |
1,965 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
11,133 |
Shell Programming and Scripting |
|
|
|
0 |
2,449 |
UNIX and Linux RSS News |
|
|
|
0 |
4,189 |
UNIX and Linux RSS News |
|
|
|
7 |
5,462 |
Shell Programming and Scripting |
|
|
|
2 |
4,721 |
Shell Programming and Scripting |
|
|
|
3 |
4,680 |
Shell Programming and Scripting |
|
|
|
4 |
3,235 |
UNIX for Dummies Questions & Answers |
|
|
|
10 |
13,636 |
Shell Programming and Scripting |
|
|
|
1 |
2,758 |
Shell Programming and Scripting |
|
|
|
0 |
3,255 |
Shell Programming and Scripting |
|
|
|
5 |
10,801 |
Shell Programming and Scripting |
|
|
|
1 |
7,180 |
Shell Programming and Scripting |
|
|
|
1 |
6,060 |
Shell Programming and Scripting |
|
|
|
4 |
2,271 |
Shell Programming and Scripting |
|
|
|
19 |
18,258 |
Shell Programming and Scripting |
|
|
|
1 |
3,299 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,854 |
Shell Programming and Scripting |
fstrcasecmp(3) Library Functions Manual fstrcasecmp(3)
NAME
fstrcasecmp - fuzzy comparison of two strings ignoring case
SYNOPSIS
#include <fstrcmp.h>
#define FSTRCMP_IDENTICAL
#define FSTRCMP_THRESHOLD
#define FSTRCMP_ERROR
double fstrcasecmp(const char *string1, const char *string2);
DESCRIPTION
The fstrcmp() function compares the two strings, string1 and string2, ignoring case.
RETURN VALUE
The fstrcasecmp function returns a floating point value between 0.0 and FSTRCMP_IDENTICAL. A value of 0.0 means the strings are utterly
un-alike. A value of FSTRCMP_IDENTICAL means the strings are identical. A value of more than FSTRCMP_THRESHOLD (it lies between 0.0 and
FSTRCMP_IDENTICAL) would be considered "similar" by most people.
A value of FSTRCMP_ERROR (always negative) indicates a malloc(3) failure.
SEE ALSO
fmemcmp(3)
fuzzy comparison of two memory areas
fstrcasecmpi(3)
fuzzy comparison of two strings ignoring case
fstrcmp(3)
fuzzy comparison of two strings
strcasecmp(3)
compare two strings ignoring case
COPYRIGHT
fstrcmp version 0.4
Copyright (C) 2009 Peter Miller
Peter Miller <pmiller@opensource.org.au>
The comparison code is derived from the fuzzy comparison functions in GNU Gettext 0.17. The GNU Gettext comparison functions were, in
turn, derived from GNU Diff 2.7.
Copyright (C) 1988-2009 Free Software Foundation
fstrcasecmp(3)