*BSD News Article 37889


Return to BSD News archive

Xref: sserve comp.sys.sun.misc:16287 comp.unix.bsd:15294
Path: sserve!newshost.anu.edu.au!harbinger.cc.monash.edu.au!msuinfo!uwm.edu!news.alpha.net!news.mathworks.com!news2.near.net!das-news2.harvard.edu!cantaloupe.srv.cs.cmu.edu!bb3.andrew.cmu.edu!andrew.cmu.edu!db74+
From: "Derrick J. Brashear" <db74+@andrew.cmu.edu>
Newsgroups: comp.sys.sun.misc,comp.unix.bsd
Subject: Re: Undocumented SunOS libc function stricmp
Date: Mon, 14 Nov 1994 16:22:32 -0500
Organization: Senior, Civil Engineering, Carnegie Mellon, Pittsburgh, PA
Lines: 9
Distribution: world
Message-ID: <kilxIMu00UoQJCm79c@andrew.cmu.edu>
NNTP-Posting-Host: po2.andrew.cmu.edu
In-Reply-To: <3a81be$4rq@zebedee.ingres.co.uk>

Re: stricmp

I think it does something like this:
stricmp(char *s, char *t)
{
        return(strcasecmp(s, t));
}

-D