~ubuntu-branches/ubuntu/maverick/totem-pl-parser/maverick

« back to all changes in this revision

Viewing changes to lib/memmem.c

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-01-21 22:38:15 UTC
  • mto: (1.3.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20080121223815-zpm89qm051i9o6cr
Tags: upstream-2.21.91
ImportĀ upstreamĀ versionĀ 2.21.91

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
 * Boyer R.S., Moore J.S. 1977, "A fast string searching algorithm",
51
51
 * Communications of ACM. 20:762-772.
52
52
 */
53
 
void *memmem(s, slen, p, plen)
 
53
void *totem_private_memmem(s, slen, p, plen)
54
54
register const void *s, *p;
55
55
size_t slen, plen;
56
56
{