C語言函數頭文件查詢工具


malloc對應的C語言頭文件檢索結果如下(最多顯示100行):
序號所在文件名所在行摘要
1stdlib.h465extern void *malloc (size_t __size) __THROW __attribute_malloc__ __wur;
2rpc/types.h61#define mem_alloc(bsize) malloc(bsize)
3execinfo.h31 malloc()ed memory block. */
4malloc.h60extern void *malloc (size_t __size) __THROW __attribute_malloc__ __wur;
5stdio.h656 (and null-terminate it). *LINEPTR is a pointer returned from malloc (or
使用說明:
  • 這裏實現了一個小工具,用於查詢C語言中一個函數對應的頭文件。
  • 查詢結果的三列依次是頭文件名稱, 函數所在行, 文件中函數周圍的代碼。
  • 目前已經擴展為可以在C語言頭文件中查詢任意字符串,可輔助解決coding中不知道怎麽include的問題。