Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为其中一个函数编写 cmock,其中以下条件可以设置g_name_found一个布尔 ( typedef int) 类型的值
g_name_found
typedef int
if (!feof (fp)) { g_name_found = TRUE; }
我无法模拟g_name_found我选择的值(TRUE/FALSE),我试图模拟feof()但模拟的函数不被视为它的 ac 内置函数。
feof()
是否可以模拟 C 内置函数,如果可以,我如何告诉链接器考虑我的模拟函数?