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,16 +30,24 @@
  */
 
 #ifndef _LMESSAGES_H_
 #define _LMESSAGES_H_
 
+#include "xlocale_private.h"
+
 struct  lc_messages_T {
         const char      *yesexpr;
         const char      *noexpr;
         const char      *yesstr;
         const char      *nostr;
 };
 
-struct lc_messages_T *__get_current_messages_locale(void);
+struct xlocale_messages {
+        struct xlocale_component header;
+        char *buffer;
+        struct lc_messages_T locale;
+};
+
+struct lc_messages_T *__get_current_messages_locale(locale_t);
 int     __messages_load_locale(const char *);
 
 #endif /* !_LMESSAGES_H_ */