Sha256: 343d64381411d9311eadbf39d6e6bd2b5ff03b614452e91d55febdaa19ca2896

Contents?: true

Size: 536 Bytes

Versions: 54

Compression:

Stored size: 536 Bytes

Contents

#ifndef ext_help_h
#define ext_help_h

#define RAISE_NOT_NULL(T) if(T == NULL) rb_raise(rb_eArgError, "NULL found for " # T " when shouldn't be.");
#define DATA_GET(from,type,name) Data_Get_Struct(from,type,name); RAISE_NOT_NULL(name);
#define REQUIRE_TYPE(V, T) if(TYPE(V) != T) rb_raise(rb_eTypeError, "Wrong argument type for " # V " required " # T);
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))

#ifdef DEBUG
#define TRACE()  fprintf(stderr, "> %s:%d:%s\n", __FILE__, __LINE__, __FUNCTION__)
#else
#define TRACE() 
#endif

#endif

Version data entries

54 entries across 54 versions & 7 rubygems

Version Path
mongrel-1.2.0.pre2-x86-mswin32 ext/http11/ext_help.h
mongrel-1.2.0.pre2-x86-mingw32 ext/http11/ext_help.h
mongrel-1.2.0.pre2 ext/http11/ext_help.h
unicorn-0.5.0 ext/unicorn/http11/ext_help.h
unicorn-0.2.2 ext/unicorn/http11/ext_help.h
unicorn-0.2.1 ext/unicorn/http11/ext_help.h
unicorn-0.1.0 ext/unicorn/http11/ext_help.h
unicorn-0.4.2 ext/unicorn/http11/ext_help.h
unicorn-0.2.3 ext/unicorn/http11/ext_help.h
unicorn-0.4.1 ext/unicorn/http11/ext_help.h
unicorn-0.5.1 ext/unicorn/http11/ext_help.h
unicorn-0.5.4 ext/unicorn/http11/ext_help.h
unicorn-0.5.3 ext/unicorn/http11/ext_help.h
unicorn-0.5.2 ext/unicorn/http11/ext_help.h