hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: BSD-2-Clause */
/*
 * Copyright (c) 2019, Linaro Limited
 */
#ifndef __STRINGS_H
#define __STRINGS_H
 
#include <sys/types.h>
#include <sys/cdefs.h>
 
int strcasecmp(const char*, const char*);
int strncasecmp(const char*, const char*, size_t);
 
int bcmp(const void *s1, const void *s2, size_t n);
 
#endif /*__STRINGS_H*/