Is atoi multithread safe? [closed]

Is atoi multithread safe? Yes, in the linux man page of atoi() it is written: ┌────────────────────────┬───────────────┬────────────────┐ │Interface │ Attribute │ Value │ ├────────────────────────┼───────────────┼────────────────┤ │atoi(), atol(), atoll() │ Thread safety │ MT-Safe locale │ └────────────────────────┴───────────────┴────────────────┘ So it’s just using the variables you pass from your thread (locale) and is completely thread-safe (MT-Safe), as long as you … Read more