P
parag_paul
Does the following typedef differ from a typedef inside a extern "C"
#if defined(__cplusplus)
extern "C" {
#endif
typedef int (*fun_point)(int);
#if defined(__cplusplus)
}
#endif
then a plain typedef
#if defined(__cplusplus)
extern "C" {
#endif
typedef int (*fun_point)(int);
#if defined(__cplusplus)
}
#endif
then a plain typedef