Is there any way to achieve function overloading in C? I am looking at simple functions to be overloaded like
foo (int a) foo (char b) foo (float c , i
Try to declare these functions as extern "C++" if your compiler supports this, http://msdn.microsoft.com/en-us/library/s6y4zxec(VS.80).aspx
extern "C++"