代码搜索:安全模式
找到约 10,000 项符合「安全模式」的源代码
代码结果 10,000
www.eeworm.com/read/150470/12291183
txt 说明文档.txt
1.首先感谢sunhorse和原作者,思想什么的可以参考《时间触发嵌入式系统设计模式》(pattern for time-triggered edmedded system ,building reliable applications with the 8051 family of microcontrollers)或者http://www.21icbbs.com/club/bbs/bbsVie
www.eeworm.com/read/131795/14126228
dat funtc239.dat
函数名称: outtext
函数原型: void far outtext(char far *textstring)
函数功能: 图形模式下在当前位置显示一行字符串
函数返回:
函数说明: textstring 要显示的字符串
所属文件:
www.eeworm.com/read/131795/14126487
dat funtc311.dat
函数名称: setviewport
函数原型: void far setviewport(int left, int top, int right, int bottom, int clip)
函数功能: 设置图形模式下图形函数操作的窗口大小
函数返回:
函数说明: left,top,right,bottom 窗口大小坐标 clip
www.eeworm.com/read/131795/14126953
dat funtc201.dat
函数名称: intdosx
函数原型: int intdosx(union REGS *inregs, union REGS *outregs, struct SREGS *segregs)
函数功能: 调用DOS的INT21中断,主要用于大编译模式
函数返回:
函数说明:
所属文件:
www.eeworm.com/read/131795/14127206
dat funtc176.dat
函数名称: getmoderange
函数原型: void far getmoderange(int graphdriver, int far *lomode,int far *himode)
函数功能: 得到某个图形驱动器driver的图形模式范围
函数返回:
函数说明: driver 图形驱动器编号,含义如下:
CGA
www.eeworm.com/read/228261/14394616
txt kmp算法.txt
void getnext(char t[],int next[])
{
//求模式t的next值并存入next数组中
int i,j;
i=1,j=0;
next[1]=0;
while(i
www.eeworm.com/read/124642/14555552
c gc_8_12.c
# include
# include
# include
/*简单模式匹配算法*/
int simple_match(char *t,char *p,int *pt)
{
int n = strlen(t), m = strlen(p),i,j,k;
for(j=0; j
www.eeworm.com/read/223339/14644548
cpp algo0408.cpp
void get_nextval(SString T, int *next) { // 算法4.8
// 求模式串T的next函数修正值并存入数组nextval。
int i = 1;
int j = 0;
next[1] = 0;
while (i