~ubuntu-branches/ubuntu/saucy/haskell-hs-bibutils/saucy

« back to all changes in this revision

Viewing changes to bibutils/strsearch.h

  • Committer: Package Import Robot
  • Author(s): Joachim Breitner
  • Date: 2011-09-26 17:57:15 UTC
  • Revision ID: package-import@ubuntu.com-20110926175715-muzp5giy0rzonss2
Tags: upstream-4.12
ImportĀ upstreamĀ versionĀ 4.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * strsearch.h
 
3
 *
 
4
 * Copyright (c) Chris Putnam 1995-2009
 
5
 *
 
6
 * Source code released under the GPL
 
7
 *
 
8
 */
 
9
 
 
10
#ifndef STRSEARCH_H
 
11
#define STRSEARCH_H
 
12
 
 
13
char *strsearch (const char *haystack, const char *needle);
 
14
 
 
15
#endif
 
16