代码搜索:error
找到约 10,000 项符合「error」的源代码
代码结果 10,000
www.eeworm.com/read/185213/9050042
h error.h
// error.h
#ifndef ERROR_H_
#define ERROR_H_
#include "blassic.h"
#include
#include
const BlErrNo
ErrNoError= 0,
ErrSyntax= 1,
ErrMisma
www.eeworm.com/read/185213/9050238
cpp error.cpp
// error.cpp
#include "error.h"
#include
#include
namespace {
struct errcode {
const BlErrNo err;
const char * const str;
errcode (BlErrNo nerr, const char * n
www.eeworm.com/read/184982/9062011
h error.h
enum error{yes,overlimit,no_symmetry,range_over,zero,no_Hessenberg};
www.eeworm.com/read/184783/9076412
c error.c
#include
#include
#include "job.h"
/* Error Handler */
void error_doit(int errnoflag,const char *fmt,va_list ap)
{
int errno_save;
char buf[BUFLEN];
errno_save=errno;
vs
www.eeworm.com/read/184783/9076458
o error.o
www.eeworm.com/read/184725/9082450
h error.h
#ifndef _OUR_ERROR_H
#define _OUR_ERROR_H
#include
#define ERROR(X) {fprintf(stderr,"[ERROR] %s\n",X);exit(-1);}
#endif
www.eeworm.com/read/184725/9082531
c error.c
#include "error.h"
#include
//#define ERROR(X) {fprintf(stderr,"[ERROR] %s\n",X);exit(-1);}
#ifdef WIN32
#ifndef __STDC__
#define __STDC__
#endif
#endif
#ifdef __STDC__
www.eeworm.com/read/184725/9082586
h error.h
#ifndef _OUR_ERROR_H
#define _OUR_ERROR_H
#include
#include
//#define ERROR(X) {fprintf(stderr,"[ERROR] %s\n",X);exit(-1);}
#ifdef __STDC__
void ERROR(char *format, ...)
www.eeworm.com/read/282561/9082655