⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fv.regex.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
#ifndef lintstatic  char sccsid[] = "@(#)fv.regex.c 1.1 92/07/30 Copyr 1988 Sun Micro";#endif/*	Copyright (c) 1987, 1988, Sun Microsystems, Inc.  All Rights Reserved.	Sun considers its source code as an unpublished, proprietary	trade secret, and it is available only under strict license	provisions.  This copyright notice is placed here only to protect	Sun in the event the source is deemed a published work.  Dissassembly,	decompilation, or other means of reducing the object code to human	readable form is prohibited by the license agreement under which	this code is provided to the user or company in possession of this	copy.	RESTRICTED RIGHTS LEGEND: Use, duplication, or disclosure by the 	Government is subject to restrictions as set forth in subparagraph 	(c)(1)(ii) of the Rights in Technical Data and Computer Software 	clause at DFARS 52.227-7013 and in similar clauses in the FAR and 	NASA FAR Supplement. */#include <stdio.h>#include <string.h>/* * Lexical definitions. * * All lexical space is allocated dynamically. * The eighth bit of characters is used to prevent recognition, * and eventually stripped. */#define	QUOTE 	0200		/* Eighth char bit used internally for 'ing */#define	TRIM	0177		/* Mask to strip quote bit */static char *Missing = "Missing %c";fv_match(s, p)	register char *s, *p;{	register int scc;	int ok, lc;	int c, cc;	/* globbed = 1; */	for (;;) {		scc = *s++ & TRIM;		switch (c = *p++) {		case '{':			return (execbrc(p - 1, s - 1));		case '[':			ok = 0;			lc = 077777;			while (cc = *p++) {				if (cc == ']') {					if (ok)						break;					return (0);				}				if (cc == '-') {					if (lc <= scc && scc <= *p++)						ok++;				} else					if (scc == (lc = cc))						ok++;			}			if (cc == 0) {				fv_putmsg(1, Missing, ']', 0);				return(-1);			}			continue;		case '*':			if (!*p)				return (1);			/* if (*p == '/') {				p++;				goto slash;			} */			for (s--; *s; s++)				if (fv_match(s, p))					return (1);			return (0);		case 0:			return (scc == 0);		default:			if ((c & TRIM) != scc)				return (0);			continue;		case '?':			if (scc == 0)				return (0);			continue;#if 0		case '/':			if (scc)				return (0);slash:			s = entp;			sgpathp = gpathp;			while (*s)				addpath(*s++);			addpath('/');			if (stat(gpath, &stb) == 0 && isdir(stb))				if (*p == 0) {					Gcat(gpath, "");					globcnt++;				} else					expand(p);			gpathp = sgpathp;			*gpathp = 0;			return (0);#endif		}	}}staticexecbrc(p, s)	char *p, *s;{	char restbuf[BUFSIZ + 2];	register char *pe, *pm, *pl;	int brclev = 0;	char *lm, savec;	for (lm = restbuf; *p != '{'; *lm++ = *p++)		continue;	for (pe = ++p; *pe; pe++)	switch (*pe) {	case '{':		brclev++;		continue;	case '}':		if (brclev == 0)			goto pend;		brclev--;		continue;	case '[':		for (pe++; *pe && *pe != ']'; pe++)			continue;		if (!*pe) {			fv_putmsg(1, Missing, ']', 0);			return(-1);		}		continue;	}pend:	if (brclev || !*pe) {		fv_putmsg(1, Missing, '}', 0);		return(-1);	}	for (pl = pm = p; pm <= pe; pm++)	switch (*pm & (QUOTE|TRIM)) {	case '{':		brclev++;		continue;	case '}':		if (brclev) {			brclev--;			continue;		}		goto doit;	case ','|QUOTE:	case ',':		if (brclev)			continue;doit:		savec = *pm;		*pm = 0;		(void) strcpy(lm, pl);		(void) strcat(restbuf, pe + 1);		*pm = savec;		/*if (s == 0) {			sgpathp = gpathp;			expand(restbuf);			gpathp = sgpathp;			*gpathp = 0;		} else */if (fv_match(s, restbuf))			return (1);		/* sort(); */		pl = pm + 1;		continue;	case '[':		for (pm++; *pm && *pm != ']'; pm++)			continue;		if (!*pm) {			fv_putmsg(1, Missing, ']', 0);			return(-1);		}		continue;	}	return (0);}

⌨️ 快捷键说明

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