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

📄 substitute.c

📁 操作系统SunOS 4.1.3版本的源码
💻 C
字号:
/* * substitute  *//* static  char *sccsid = "@(#)substitute.c 1.1 92/07/30 SMI"; */#include "colldef.h"#include "y.tab.h"#include "extern.h"/* * setup _1_to_m */set_1_to_m(a, b)	struct type_var *a, *b;{	if (no_of_1_to_m >= NUM_1_TO_MANY) {		/*		 * If too many, ignore it.		 */		warning("too many substitute statement.");		return(ERROR);	}	_1_to_m[no_of_1_to_m].one = a->type_val.str_val[0];	_1_to_m[no_of_1_to_m].many = strsave(b->type_val.str_val);	++no_of_1_to_m;	return(OK);}

⌨️ 快捷键说明

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