v8regerror.c

来自「minix操作系统最新版本(3.1.1)的源代码」· C语言 代码 · 共 16 行

C
16
字号
/*	regerror() - Default regexp error report	Author: Kees J. Bot *								12 Jun 1999 * * A better version of this routine should be supplied by the user in * the program using regexps. */#include <stdio.h>#define const		/* avoid "const poisoning" */#include <regexp.h>#undef constvoid regerror(char *message){	fprintf(stderr, "regexp error: %s\n", message);}

⌨️ 快捷键说明

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