标签: python c function declaration analysis
我有一个任务来分析python中c中的函数声明 我的正则表达式找到了所有函数,但它找到了被注释的声明,这是错误的,例如:
unsigned int *hashfn(const char *str, ...); //unsigned int *hash_function(const char *str, unsigned int htab_size);
我需要忽略第二个功能 有什么想法吗?