~ubuntu-branches/debian/squeeze/sword/squeeze

« back to all changes in this revision

Viewing changes to src/utilfuns/unixstr.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Glassey
  • Date: 2004-01-15 15:50:07 UTC
  • Revision ID: james.westby@ubuntu.com-20040115155007-n9mz4x0zxrs1isd3
Tags: upstream-1.5.7
ImportĀ upstreamĀ versionĀ 1.5.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Include only if your UNIX compiler does not include stricmp but does include strcasecmp
 
2
 
 
3
#include <unixstr.h>
 
4
#include <string.h>
 
5
 
 
6
SWORD_NAMESPACE_START
 
7
int stricmp(const char *s1, const char *s2) {
 
8
        return strcasecmp(s1, s2);
 
9
}
 
10
SWORD_NAMESPACE_END