Difference for common/utils.c from version 1.18 to 1.19


version 1.18 version 1.19
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_utils_c =   * static char *rcsid_utils_c =
  *   "$Id: utils.c,v 1.18 2005/07/17 11:00:03 ryo_saeba Exp $";   *   "$Id: utils.c,v 1.19 2005/10/13 07:26:00 mwedel Exp $";
  */   */
   
 /*  /*
Line 393
 
Line 393
 const char* strrstr(const char* haystack, const char* needle){  const char* strrstr(const char* haystack, const char* needle){
     const char* lastneedle;      const char* lastneedle;
     lastneedle=NULL;      lastneedle=NULL;
     while(haystack=strstr(haystack,needle)){      while((haystack=strstr(haystack,needle))!=NULL){
         lastneedle=haystack;          lastneedle=haystack;
         haystack++;          haystack++;
     }      }


Legend:
line(s) removed in v.1.18 
line(s) changed
 line(s) added in v.1.19

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:19