NO

Author Topic: General learning- how to specify which function to use if there are duplicates.  (Read 2450 times)

martin

  • Guest
In Pelles C help it says Sleep uses seconds. In WIn32 Programmer's Guide it says Sleep uses mS. How do I specify which function will be used?

Offline Robert

  • Member
  • *
  • Posts: 245
The Pelle's C function is

_sleep

The Microsoft API function is

Sleep

Remember that the C language is case sensitive.

Robert Wishlaw

martin

  • Guest
Oh thank you. I shouldn't have been confused but I obviously was.