vote up 3 vote down star

This function exists on OS X and allows you to pass custom local to the function. setlocale is not thread-safe, and passing locale as parameter is.

If there is no equivalent, any way of locale-independent printf, or printf just for doubles (%g) will be ok.

flag

2 Answers

vote up 3 vote down

You might try uselocale, which sets the thread locale (rather than the process locale) before calling printf.

link|flag
Not perfect, but works. If anyone else has better answer, go ahead. – phjr Nov 7 '08 at 16:29
@Sunlight: I think you should amplify your answer a little - but I think you're probably right. @phjr: the BSD/MacOS X solution with printf_l() is arguably tidier, but the uselocale() should work. – Jonathan Leffler Nov 7 '08 at 17:17
vote up 0 vote down check

There are locale-independent double to string convertion routines at http://www.netlib.org/fp/. String to double conversion is available too. The API is not very nice, but the code works.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.