Difference for misc/strutil.c from version 1.3 to 1.4


version 1.3 version 1.4
Line 19
 
Line 19
  * string manipulation utility code   * string manipulation utility code
  *    *
  * $Log$   * $Log$
    * Revision 1.4  1999/10/25 08:09:19  sekmu
    * compilable in dos again. __DOS__ is never defined.  use MSDOS or DJGPP
    *
  * Revision 1.3  1999/10/17 23:15:23  donut   * Revision 1.3  1999/10/17 23:15:23  donut
  * made str(n)icmp have const args   * made str(n)icmp have const args
  *   *
Line 56
 
Line 59
   
 #endif  #endif
   
 #if ((!defined(__WINDOWS__) && !defined(__DOS__)) || defined(__LCC__))  #if ((!defined(__WINDOWS__) && !defined(__DJGPP__)) || defined(__LCC__))
 // string compare without regard to case  // string compare without regard to case
   
 #define strcmpi(a,b) stricmp(a,b)  #define strcmpi(a,b) stricmp(a,b)

Legend:
line(s) removed in v.1.3 
line(s) changed
 line(s) added in v.1.4