1a8ed63bbSDavid Chisnall /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3e58eb3c4SPedro F. Giffuni * 4a8ed63bbSDavid Chisnall * Copyright (c) 2011, 2012 The FreeBSD Foundation 5a8ed63bbSDavid Chisnall * 6a8ed63bbSDavid Chisnall * Redistribution and use in source and binary forms, with or without 7a8ed63bbSDavid Chisnall * modification, are permitted provided that the following conditions 8a8ed63bbSDavid Chisnall * are met: 9a8ed63bbSDavid Chisnall * 1. Redistributions of source code must retain the above copyright 10a8ed63bbSDavid Chisnall * notice, this list of conditions and the following disclaimer. 11a8ed63bbSDavid Chisnall * 2. Redistributions in binary form must reproduce the above copyright 12a8ed63bbSDavid Chisnall * notice, this list of conditions and the following disclaimer in the 13a8ed63bbSDavid Chisnall * documentation and/or other materials provided with the distribution. 14a8ed63bbSDavid Chisnall * 15a8ed63bbSDavid Chisnall * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16a8ed63bbSDavid Chisnall * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17a8ed63bbSDavid Chisnall * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18a8ed63bbSDavid Chisnall * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19a8ed63bbSDavid Chisnall * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20a8ed63bbSDavid Chisnall * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21a8ed63bbSDavid Chisnall * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22a8ed63bbSDavid Chisnall * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23a8ed63bbSDavid Chisnall * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24a8ed63bbSDavid Chisnall * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25a8ed63bbSDavid Chisnall * SUCH DAMAGE. 26a8ed63bbSDavid Chisnall */ 27a8ed63bbSDavid Chisnall 28a8ed63bbSDavid Chisnall #ifndef _LOCALE_T_DEFINED 29a8ed63bbSDavid Chisnall #define _LOCALE_T_DEFINED 30a8ed63bbSDavid Chisnall typedef struct _xlocale *locale_t; 31a8ed63bbSDavid Chisnall #endif 32a8ed63bbSDavid Chisnall 33a8ed63bbSDavid Chisnall /* 34a8ed63bbSDavid Chisnall * This file is included from both string.h and xlocale.h. We need to expose 35a8ed63bbSDavid Chisnall * the declarations unconditionally if we are included from xlocale.h, but only 36a8ed63bbSDavid Chisnall * if we are in POSIX2008 mode if included from string.h. 37a8ed63bbSDavid Chisnall */ 38a8ed63bbSDavid Chisnall 39a8ed63bbSDavid Chisnall #ifndef _XLOCALE_STRING1_H 40a8ed63bbSDavid Chisnall #define _XLOCALE_STRING1_H 41a8ed63bbSDavid Chisnall 42a8ed63bbSDavid Chisnall /* 43a8ed63bbSDavid Chisnall * POSIX2008 functions 44a8ed63bbSDavid Chisnall */ 45a8ed63bbSDavid Chisnall int strcoll_l(const char *, const char *, locale_t); 46675079b1SKonstantin Belousov char *strerror_l(int num, locale_t); 47a8ed63bbSDavid Chisnall size_t strxfrm_l(char *, const char *, size_t, locale_t); 48a8ed63bbSDavid Chisnall #endif /* _XLOCALE_STRING1_H */ 49a8ed63bbSDavid Chisnall 50a8ed63bbSDavid Chisnall /* 51a8ed63bbSDavid Chisnall * xlocale extensions 52a8ed63bbSDavid Chisnall */ 53a8ed63bbSDavid Chisnall #ifdef _XLOCALE_H_ 54a8ed63bbSDavid Chisnall #ifndef _XLOCALE_STRING2_H 55a8ed63bbSDavid Chisnall #define _XLOCALE_STRING2_H 56a8ed63bbSDavid Chisnall char *strcasestr_l(const char *, const char *, locale_t); 57a8ed63bbSDavid Chisnall 58a8ed63bbSDavid Chisnall #endif /* _XLOCALE_STRING2_H */ 59a8ed63bbSDavid Chisnall #endif /* _XLOCALE_H_ */ 60