lnumeric.h revision 87658
172165Sphantom/*
287658Sphantom * Copyright (c) 2000, 2001 Alexey Zelkin <phantom@FreeBSD.org>
372165Sphantom * All rights reserved.
472165Sphantom *
572165Sphantom * Redistribution and use in source and binary forms, with or without
672165Sphantom * modification, are permitted provided that the following conditions
772165Sphantom * are met:
872165Sphantom * 1. Redistributions of source code must retain the above copyright
972165Sphantom *    notice, this list of conditions and the following disclaimer.
1072165Sphantom * 2. Redistributions in binary form must reproduce the above copyright
1172165Sphantom *    notice, this list of conditions and the following disclaimer in the
1272165Sphantom *    documentation and/or other materials provided with the distribution.
1372165Sphantom *
1472165Sphantom * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1572165Sphantom * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1672165Sphantom * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1772165Sphantom * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1872165Sphantom * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1972165Sphantom * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2072165Sphantom * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2172165Sphantom * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2272165Sphantom * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2372165Sphantom * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2472165Sphantom * SUCH DAMAGE.
2572165Sphantom *
2672165Sphantom * $FreeBSD: head/lib/libc/locale/lnumeric.h 87658 2001-12-11 15:55:42Z phantom $
2772165Sphantom */
2872165Sphantom
2972165Sphantom#ifndef _LNUMERIC_H
3072165Sphantom#define _LNUMERIC_H
3172165Sphantom
3272165Sphantomstruct lc_numeric_T {
3372165Sphantom	const char *	decimal_point;
3472165Sphantom	const char *	thousands_sep;
3572165Sphantom	const char *	grouping;
3672165Sphantom};
3772165Sphantom
3872165Sphantomextern struct lc_numeric_T * __get_current_numeric_locale(void);
3972165Sphantomextern int __numeric_load_locale(const char *);
4072165Sphantom
4172165Sphantom#endif /* _LNUMERIC_H */
42