Print this page
2964 need POSIX 2008 locale object support
@@ -1,9 +1,14 @@
/*
* Copyright (c) 2000, 2001 Alexey Zelkin <phantom@FreeBSD.org>
* All rights reserved.
*
+ * Copyright (c) 2011 The FreeBSD Foundation
+ * All rights reserved.
+ * Portions of this software were developed by David Chisnall
+ * under sponsorship from the FreeBSD Foundation.
+ *
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
@@ -25,15 +30,23 @@
*/
#ifndef _LNUMERIC_H_
#define _LNUMERIC_H_
+#include "xlocale_private.h"
+
struct lc_numeric_T {
const char *decimal_point;
const char *thousands_sep;
const char *grouping;
};
-struct lc_numeric_T *__get_current_numeric_locale(void);
+struct xlocale_numeric {
+ struct xlocale_component header;
+ char *buffer;
+ struct lc_numeric_T locale;
+};
+
+struct lc_numeric_T *__get_current_numeric_locale(locale_t);
int __numeric_load_locale(const char *);
#endif /* !_LNUMERIC_H_ */