From 292b0bdad1aa79483a7498e72028bbff8134cebb Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 12 Jan 2015 20:28:17 -0800 Subject: Moved python, rb, lua wrappers to wrappers subdirectory. --- wrapper.py | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 wrapper.py (limited to 'wrapper.py') diff --git a/wrapper.py b/wrapper.py deleted file mode 100755 index 52cbfc7..0000000 --- a/wrapper.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python - -# Example for using the shared library from python - -from ctypes import CDLL, c_char_p, c_long -import sys -import platform - -sysname = platform.system() - -if sysname == 'Darwin': - cmark = CDLL("build/src/libcmark.dylib") -else: - cmark = CDLL("build/src/libcmark.so") - -markdown = cmark.cmark_markdown_to_html -markdown.restype = c_char_p -markdown.argtypes = [c_char_p, c_long] - -def md2html(text): - return markdown(text, len(text)) - -sys.stdout.write(md2html(sys.stdin.read())) -- cgit v1.2.3