~ubuntu-branches/ubuntu/dapper/gnutls12/dapper-proposed

« back to all changes in this revision

Viewing changes to lib/memmem.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2005-11-15 19:26:02 UTC
  • Revision ID: james.westby@ubuntu.com-20051115192602-milf548iripaq3jh
Tags: 1.2.9-2
* Install /usr/lib/pkgconfig/*.pc files.
* Depend on texinfo (>= 4.8, for the @euro{} sign).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation
 
3
 *
 
4
 * Author: Simon Josefsson
 
5
 *
 
6
 * This file is part of GNUTLS.
 
7
 *
 
8
 * The GNUTLS library is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Lesser General Public License
 
10
 * as published by the Free Software Foundation; either version 2.1 of
 
11
 * the License, or (at your option) any later version.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful, but
 
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Lesser General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Lesser General Public
 
19
 * License along with this library; if not, write to the Free Software
 
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 
21
 * USA
 
22
 *
 
23
 */
 
24
 
 
25
#ifndef MEMMEM_H
 
26
# define MEMMEM_H
 
27
 
 
28
/* Get memmem, if available. */
 
29
# include <string.h>
 
30
 
 
31
# if defined HAVE_DECL_MEMMEM && !HAVE_DECL_MEMMEM
 
32
void *memmem(const void *haystack, size_t haystack_len,
 
33
             const void *needle, size_t needle_len);
 
34
# endif
 
35
 
 
36
#endif                          /* MEMMEM_H */