I have noticed that using F10 – Step Over in VS automatically skips my functions. Why is that?
I did noticed that F11- Step Into, does enter my functions, however it enters the implementation code of the functions I am using from the various C libraries, which is really annoying.
Is there any way I can run step by step inside my functions without entering the implementation code of the included libraries?
It is annoying, especially if you happen to call several functions just to get parameters into yours. You can use step out (Shift+F11) to quickly get out of uninteresting code. (and then F11 to get into the next one)