Is there a definitive list of functions that are thread-safe in Mac OS X's implementation of the C standard library?
There is a good answer here with regards to glibc
and f*()
functions specifically, but I have failed to find any such resource with respect to OS X. Is there such a thing?
For example, are strptime()
and strftime()
thread-safe? printf()
? These are some that may have internal buffers that I would not want to mess up. :)