gdb學習6:給函數名設置斷點

gdb真的是調試代碼的神器,不但能夠給代碼行設置斷點,也能夠給函數名設置斷點。bash 代碼:函數 #include <stdio.h> #include <stdlib.h> #include <string.h> char *MyStrCopy1(const char *s1) { if(NULL == s1) { return "string is NULL"; } else
相關文章
相關標籤/搜索