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

📄 v8_regerror.c

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 C
字号:
/* regerror.c   Copyright 1996, 1998, 2001 Red Hat, Inc.This file is part of Cygwin.This software is a copyrighted work licensed under the terms of theCygwin license.  Please consult the file "CYGWIN_LICENSE" fordetails. */#include "winsup.h"#include "regexp.h"#include <stdio.h>void __declspec(dllexport)regerror(const char *s __attribute__ ((unused))){#ifdef ERRAVAIL	error("regexp: %s", s);#else/*	fprintf(stderr, "regexp(3): %s\n", s);	exit(1);*/	return;	  /* let std. egrep handle errors */#endif	/* NOTREACHED */}

⌨️ 快捷键说明

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