Understanding extern “C” in C again
Original link: https://blog.vvzero.com/2023/07/03/learn-extern-c-in-cpp-again/ This article is part of the “Jade Attack Project”, translated from the answer of Ciro Santilli in https://stackoverflow.com/questions/1041866/what-is-the-effect-of-extern-c-in-c Understand the role of extern “C” through disassembly main.cpp 1 2 3 4 5 6 7 8 9 10 void f () {} void g () ; extern “C” { void ef () {} […]
Understanding extern “C” in C again Read More »