代码搜索:myfunction
找到约 720 项符合「myfunction」的源代码
代码结果 720
www.eeworm.com/read/203303/15362713
c myfunction.c
// ----------------------------------------------------------------------------- MYFUNCTION
/*
You can add any function you want.
Don't forget to also modify functions.txt
*/
struct f MyFun
www.eeworm.com/read/105181/15675742
h myfunction.h
void TangStrncpy(char* src,char* dst,int len)
{
memset(src,0,len);
strncpy(src,dst,len - 1);
}
www.eeworm.com/read/187392/8642309
c myfunctions.c
int c=2;
int myfunction1(int a)
{
return (a*2 + c);
}
int myfunction2(int a)
{
return (a*3 + c);
}
int myfunction3(int a)
{
return (a*5 + c);
}