in_set.c

来自「NIST Handwriting OCR Testbed」· C语言 代码 · 共 19 行

C
19
字号
/*# proc: is_in_int_set - determines if the specified integer is a member# proc:                 of the given set represetned as a string of integers.*/is_in_int_set(i, set)int i;char *set;{   int j, c;   for(j = 0; j < strlen(set); j++){      c = set[j] - 0x30;      if(i == c)         return(1);   }   return(0);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?