strings.h (9bfd3b4076a7b0dfd27ab22318e5113dc84fea28) strings.h (5af6fbd72790173e128222943effc5aa95272ce9)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 54 unchanged lines hidden (view full) ---

63int strcasecmp(const char *, const char *) __pure;
64int strncasecmp(const char *, const char *, size_t) __pure;
65
66#if __POSIX_VISIBLE >= 200809 || defined(_XLOCALE_H_)
67#include <xlocale/_strings.h>
68#endif
69__END_DECLS
70
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause
3 *
4 * Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 54 unchanged lines hidden (view full) ---

63int strcasecmp(const char *, const char *) __pure;
64int strncasecmp(const char *, const char *, size_t) __pure;
65
66#if __POSIX_VISIBLE >= 200809 || defined(_XLOCALE_H_)
67#include <xlocale/_strings.h>
68#endif
69__END_DECLS
70
71#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0
71#if !defined(_STANDALONE) && defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0
72#include <ssp/strings.h>
73#endif
74#endif /* _STRINGS_H_ */
72#include <ssp/strings.h>
73#endif
74#endif /* _STRINGS_H_ */