diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-06-11 15:47:44 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-06-11 15:47:44 -0700 |
commit | 3dd9240cc311f3c617d68764a6e6a1a21a77c6a6 (patch) | |
tree | ef08093422e4db1e2830542edf6f0a44e5d4726e /lbl/os-ultrix4.h | |
parent | 7e17343965b7275367a4f0ceb90969867f3f1410 (diff) | |
download | tcpdump-3dd9240cc311f3c617d68764a6e6a1a21a77c6a6.tar.gz |
Do case-insensitive comparisons assuming ASCII strings.
Do the case-insensitive comparisons in a locale-independent fashion that
only maps ASCII letters, in the standard English-language fashion; that
way, we don't get bitten by, for example, Turkish having separate "i
with dot" and "i without dot" letters, with lower-case "i with dot" being
mapped to upper-case "I with dot" rather than being mapped to "I".
Diffstat (limited to 'lbl/os-ultrix4.h')
-rw-r--r-- | lbl/os-ultrix4.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lbl/os-ultrix4.h b/lbl/os-ultrix4.h index fa1f770f..891def2b 100644 --- a/lbl/os-ultrix4.h +++ b/lbl/os-ultrix4.h @@ -34,4 +34,3 @@ int ioctl(int, int, caddr_t); int pfopen(char *, int); int setlinebuf(FILE *); int socket(int, int, int); -int strcasecmp(const char *, const char *); |