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,10 +30,12 @@
  */
 
 #ifndef _LMONETARY_H_
 #define _LMONETARY_H_
 
+#include "xlocale_private.h"
+
 struct lc_monetary_T {
         const char      *int_curr_symbol;
         const char      *currency_symbol;
         const char      *mon_decimal_point;
         const char      *mon_thousands_sep;

@@ -49,9 +56,15 @@
         const char      *int_n_sep_by_space;
         const char      *int_p_sign_posn;
         const char      *int_n_sign_posn;
 };
 
-struct lc_monetary_T *__get_current_monetary_locale(void);
+struct xlocale_monetary {
+        struct xlocale_component header;
+        char *buffer;
+        struct lc_monetary_T locale;
+};
+
+struct lc_monetary_T *__get_current_monetary_locale(locale_t);
 int     __monetary_load_locale(const char *);
 
 #endif /* !_LMONETARY_H_ */