PDA

Click to See Complete Forum and Search --> : Why there is an underscore in front of some C++ functions?


transcendental
Oct 31st, 2001, 11:40 AM
As above.

for example _atoi64()

Is there any special meaning behind it?

thanx in advance.

jim mcnamara
Oct 31st, 2001, 11:59 AM
It's not standard - specific to VC++ _msize() for example.

Some standard C functions exist as slightly different implementations in C++, so this warns somebody who is try to write portable code.