Sha256: 266eac513de57431e91a628920a2d0df5319ed4049676a1325cd0756c30365d7

Contents?: true

Size: 435 Bytes

Versions: 6

Compression:

Stored size: 435 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

#endif/* __MARKDOWN_D */

Version data entries

6 entries across 6 versions & 4 rubygems

Version Path
challah-1.0.0.beta vendor/bundle/gems/rdiscount-2.0.7.1/ext/config.h
rdiscount-2.0.7.1 ext/config.h
rdiscount-dsc-1.6.9 ext/config.h
rdiscount-2.0.7 ext/config.h
patcito-rdiscount-1.6.9 ext/config.h
patcito-rdiscount-1.6.8 ext/config.h