Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 911753
Collapse All | Expand All

(-)a/parse.c (-10 lines)
Lines 965-980 Link Here
965
  }
965
  }
966
}
966
}
967
967
968
char *memmem (char *haystack, size_t haystacklen,
969
              char *needle, size_t needlelen)
970
{
971
  char *c;
972
  for (c = haystack; c <= haystack + haystacklen - needlelen; c++)
973
    if (!memcmp (c, needle, needlelen))
974
      return c;
975
  return NULL;
976
}
977
978
/*
968
/*
979
   Identify which camera created this file, and set global variables
969
   Identify which camera created this file, and set global variables
980
   accordingly.	 Return nonzero if the file cannot be decoded.
970
   accordingly.	 Return nonzero if the file cannot be decoded.

Return to bug 911753