Does extern “C” force limitations on my code?

后端 未结 2 1527
既然无缘
既然无缘 2021-01-20 04:17

Does the standard say anything about limitations on functions used with extern \"C\"? In a questions of mine that makes no sense to anyone else. It appears that

2条回答
  •  一生所求
    2021-01-20 04:47

    You can't have extern 'c' that isn't compatible with 'c' - that means no default parameters and no overloaded functions

提交回复
热议问题