Sha256: 2d17a29afd56e951f33bedc53ad2e4e97b821336b49268a53821aa0c318c21dd

Contents?: true

Size: 461 Bytes

Versions: 11

Compression:

Stored size: 461 Bytes

Contents

/*
 * rdiscount extension discount configuration
 */
#ifndef __MARKDOWN_D
#define __MARKDOWN_D 1

/* tabs are four spaces */
#define TABSTOP 4

/* these are setup by extconf.rb */
#if HAVE_RANDOM
#define COINTOSS() (random()&1)
#elif HAVE_RAND
#define COINTOSS() (rand()&1)
#endif

#if HAVE_SRANDOM
#define INITRNG(x) srandom((unsigned int)x)
#elif HAVE_SRAND
#define INITRNG(x) srand((unsigned int)x)
#endif

#include "ruby-config.h"

#endif/* __MARKDOWN_D */

Version data entries

11 entries across 10 versions & 3 rubygems

Version Path
rdiscountwl-1.0.0.2 ext/config.h
rdiscountwl-1.0.0.1 ext/config.h
rdiscount-2.2.0.2 ext/config.h
rdiscount-2.2.0.1 ext/config.h
rdiscount-2.2.0 ext/config.h
challah-1.0.0.beta3 vendor/bundle/gems/rdiscount-2.0.7.2/ext/config.h
challah-1.0.0.beta3 vendor/bundle/gems/rdiscount-2.0.7.3/ext/config.h
rdiscount-2.0.7.3 ext/config.h
challah-1.0.0.beta2 vendor/bundle/gems/rdiscount-2.0.7.2/ext/config.h
challah-1.0.0.beta vendor/bundle/gems/rdiscount-2.0.7.2/ext/config.h
rdiscount-2.0.7.2 ext/config.h