My Project
substitutions.h
Go to the documentation of this file.
1/******************************************************************************
2 Copyright (c) 2007,2010 Turku PET Centre
3
4 substitutions.h
5
6 Version history:
7 2006-07-17 Harri Merisaari
8 First introduced.
9 2010-07-01 Vesa Oikonen
10 Added strcasestr().
11
12
13******************************************************************************/
14#ifdef __STRICT_ANSI__
15char* strdup(const char* s);
16int strcasecmp(char *s1, char *s2);
17#endif
18#ifndef _GNU_SOURCE
19char *strcasestr(char *src, char *sub);
20#endif
21/*****************************************************************************/
22
char * strcasestr(char *src, char *sub)
Definition: substitutions.c:106