substitutions.h
Go to the documentation of this file.
00001 /******************************************************************************
00002   Copyright (c) 2007,2010 Turku PET Centre
00003 
00004   substitutions.h
00005 
00006   Version history:
00007   2006-07-17 Harri Merisaari
00008     First introduced.
00009   2010-07-01 Vesa Oikonen
00010     Added strcasestr().
00011 
00012 
00013 ******************************************************************************/
00014 #ifdef __STRICT_ANSI__
00015 char* strdup(const char* s);
00016 int strcasecmp(char *s1, char *s2);
00017 #endif
00018 #ifndef _GNU_SOURCE
00019 char *strcasestr(char *src, char *sub);
00020 #endif
00021 /*****************************************************************************/
00022