File: version.c

package info (click to toggle)
ruby-bluecloth 2.2.0-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 948 kB
  • ctags: 508
  • sloc: ansic: 3,488; ruby: 2,488; makefile: 5
file content (27 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "config.h"

char markdown_version[] = VERSION
#if 4 != 4
		" TAB=4"
#endif
#if USE_AMALLOC
		" DEBUG"
#endif
#if USE_DISCOUNT_DL
# if USE_EXTRA_DL
		" DL=BOTH"
# else
		" DL=DISCOUNT"
# endif
#elif USE_EXTRA_DL
		" DL=EXTRA"
#else
		" DL=NONE"
#endif
#if WITH_ID_ANCHOR
		" ID-ANCHOR"
#endif
#if WITH_GITHUB_TAGS
		" GITHUB-TAGS"
#endif
		;