bal.c
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C语言 代码 · 共 40 行
C
40 行
#ifndef lintstatic char *sccsid = "@(#)bal.c 4.1 (ULTRIX) 7/17/90";#endif lint#/* Function to find the position, in str, of the first of the char- acters in end occurring outside a balanced string. A balanced string contains matched occurrences of any character in open and the corres- ponding character in clos. Balanced strings may be nested. The null at the end of str is considered to belong to end. Unmatched members of open or clos result in an error return.*/#define ifany(x) for (p=x; *p; p++) if (c == *p)#define matching_clos clos[p-open]#define error -1#define position s-str-1balbrk(str,open,clos,end)char *str,*open,*clos,*end;{ register char *p, *s, c; char opp[2]; opp[1] = '\0'; for (s = str; c = *s++; ) { ifany(end) return position; ifany(clos) return error; ifany(open) { opp[0] = matching_clos; s += balbrk(s,open,clos,opp); if (*s++ != matching_clos) return error; break; } } return position;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?