~ubuntu-branches/ubuntu/lucid/bogofilter/lucid-security

« back to all changes in this revision

Viewing changes to src/memstr.h

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-05-06 05:41:52 UTC
  • mfrom: (1.1.11 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090506054152-tgameecssbuv4np6
Tags: 1.2.0-2ubuntu1
* Merge from debian unstable, remaining changes: LP: #372497
  - don't build qdbm.
  - Don't build tokyocabinet support as it's in universe.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: memstr.h 5270 2005-01-04 16:01:56Z m-a $ */
 
1
/* $Id: memstr.h 6774 2009-02-01 02:29:27Z relson $ */
2
2
 
3
3
/** \file memstr.h declarations for memstr.c
4
4
 * \author Matthias Andree
11
11
#include <string.h>
12
12
 
13
13
/** find needle in haystack (which is treated as unsigned char *). */
14
 
void *memstr(const void *haystack, size_t n, const char *needle);
 
14
void *memstr(void *haystack, size_t n, const char *needle);
15
15
 
16
16
#endif