2015-07-31 18:57:00 +08:00
|
|
|
/* strings.h */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-07-31 18:57:00 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __INC_strings_h__
|
|
|
|
#define __INC_strings_h__
|
|
|
|
|
2016-01-23 01:38:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 18:57:00 +08:00
|
|
|
extern int strncasecmp(const char *s1, const char *s2, size_t n);
|
|
|
|
|
2016-01-23 01:38:49 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 18:57:00 +08:00
|
|
|
#endif /* __INC_strings_h__ */
|