From c112e4d2cb3cd80c3f7cc0e6eb463cc71b2cf24f Mon Sep 17 00:00:00 2001 From: tjr Date: Wed, 9 Oct 2002 09:19:28 +0000 Subject: Add support for the 6 new C99 struct lconv members dealing with formatting international monetary values: int_p_cs_precedes, int_n_cs_precedes, int_p_sep_by_space, int_n_sep_by_space, int_p_sign_posn, int_n_sign_posn. This should not break existing binaries or LC_MONETARY data files. Reviewed by: ache MFC after: 1 month --- include/locale.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include') diff --git a/include/locale.h b/include/locale.h index 8b6ad4d..2477db4 100644 --- a/include/locale.h +++ b/include/locale.h @@ -56,6 +56,12 @@ struct lconv { char n_sep_by_space; char p_sign_posn; char n_sign_posn; + char int_p_cs_precedes; + char int_n_cs_precedes; + char int_p_sep_by_space; + char int_n_sep_by_space; + char int_p_sign_posn; + char int_n_sign_posn; }; #ifndef NULL -- cgit v1.1