All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
strcasestr.h
Go to the documentation of this file.
1 /*
2 Permission is hereby granted, free of charge, to any person obtaining a copy
3 of this software and associated documentation files (the "Software"), to
4 deal in the Software without restriction, including without limitation the
5 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
6 sell copies of the Software, and to permit persons to whom the Software is
7 furnished to do so, subject to the following conditions:
8 
9 The above copyright notice and this permission notice shall be included in
10 all copies of the Software and its Copyright notices. In addition publicly
11 documented acknowledgment must be given that this software has been used if no
12 source code of this software is made available publicly. Making the source
13 available publicly means including the source for this software with the
14 distribution, or a method to get this software via some reasonable mechanism
15 (electronic transfer via a network or media) as well as making an offer to
16 supply the source on request. This Copyright notice serves as an offer to
17 supply the source on on request as well. Instead of this, supplying
18 acknowledgments of use of this software in either Copyright notices, Manuals,
19 Publicity and Marketing documents or any documentation provided with any
20 product containing this software. This License does not apply to any software
21 that links to the libraries provided by this software (statically or
22 dynamically), but only to the software provided.
23 
24 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
28 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 
31 Source:
32 Evil 1.7.4
33 The Evil library tried to port some convenient Unix functions
34 to the Windows (XP or CE) platform. They are planned to be used
35 
36 http://git.enlightenment.org/legacy/evil.git/tree/src/lib/evil_string.h?id=eeaddf80d0d547d4c216974038c0599b34359695
37 */
38 
39 #ifndef VS2010_PORT_STRCASESTR_H_
40 #define VS2010_PORT_STRCASESTR_H_
41 
57 char *strcasestr(const char *haystack, const char *needle);
58 
59 #endif /* VS2010_PORT_STRCASESTR_H_ */
char * strcasestr(const char *haystack, const char *needle)
Locatea substring into a string, ignoring case.
Definition: strcasestr.cpp:43