Changeset 125


Ignore:
Timestamp:
1999-01-25T16:59:40+13:00 (25 years ago)
Author:
sjboddie
Message:

fixed a bug in sorting code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/gdbmclass.cpp

    r124 r125  
    1212/*
    1313   $Log$
     14   Revision 1.5  1999/01/25 03:59:40  sjboddie
     15   fixed a bug in sorting code
     16
    1417   Revision 1.4  1999/01/21 21:20:08  sjboddie
    1518   removed unused collection parameter from several functions
     
    5457#endif
    5558
     59
     60static int compare_str (const char *e1, const char *e2) {
     61#ifdef __WIN32__
     62  return _stricmp(e1, e2);
     63#else
     64  return strcasecmp(e1, e2); 
     65#endif
     66}
    5667
    5768static int compare_str (const void *e1, const void *e2) {
Note: See TracChangeset for help on using the changeset viewer.