#include <stdio.h> #include <string.h> int main(int argc, char* argv[]) { char dst[] = "hello"; char *src = "woh"; strcpy(dst, src); return 0; }
eclipse调试如何进入strcpy库函数 , stepinto没进入。
天蓬老师2017-04-21 10:59:25
라이브러리 함수는 모두 컴파일되어 있으며 Eclipse에는 소스 코드가 없습니다. 물론 stepinto는 들어갈 수 없습니다.
소스코드를 보고 싶으시면 eglibc 소스코드를 다운받아 보시면 됩니다.