forked from github/cmark-gfm
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
410 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// swift-tools-version:4.0 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "cmark", | ||
products: [ | ||
.library(name: "cmark", targets: ["cmark"]), | ||
], | ||
targets: [ | ||
.target(name: "cmark") | ||
] | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
#include <stdlib.h> | ||
#include "ext_scanners.h" | ||
|
||
bufsize_t _ext_scan_at(bufsize_t (*scanner)(const unsigned char *), unsigned char *ptr, int len, bufsize_t offset) | ||
{ | ||
bufsize_t res; | ||
|
||
if (ptr == NULL || offset > len) { | ||
return 0; | ||
} else { | ||
unsigned char lim = ptr[len]; | ||
|
||
ptr[len] = '\0'; | ||
res = scanner(ptr + offset); | ||
ptr[len] = lim; | ||
} | ||
|
||
return res; | ||
} | ||
|
||
/*!re2c | ||
re2c:define:YYCTYPE = "unsigned char"; | ||
re2c:define:YYCURSOR = p; | ||
re2c:define:YYMARKER = marker; | ||
re2c:define:YYCTXMARKER = marker; | ||
re2c:yyfill:enable = 0; | ||
spacechar = [ \t\v\f]; | ||
newline = [\r]?[\n]; | ||
escaped_char = [\\][|!"#$%&'()*+,./:;<=>?@[\\\]^_`{}~-]; | ||
table_marker = (spacechar*[:]?[-]+[:]?spacechar*); | ||
table_cell = (escaped_char|[^|\r\n])*; | ||
*/ | ||
|
||
bufsize_t _scan_table_start(const unsigned char *p) | ||
{ | ||
const unsigned char *marker = NULL; | ||
const unsigned char *start = p; | ||
/*!re2c | ||
[|]? table_marker ([|] table_marker)* [|]? spacechar* newline { return (bufsize_t)(p - start); } | ||
.? { return 0; } | ||
*/ | ||
} | ||
|
||
bufsize_t _scan_table_cell(const unsigned char *p) | ||
{ | ||
const unsigned char *marker = NULL; | ||
const unsigned char *start = p; | ||
/*!re2c | ||
table_cell { return (bufsize_t)(p - start); } | ||
.? { return 0; } | ||
*/ | ||
} | ||
|
||
bufsize_t _scan_table_cell_end(const unsigned char *p) | ||
{ | ||
const unsigned char *marker = NULL; | ||
const unsigned char *start = p; | ||
/*!re2c | ||
[|] spacechar* newline? { return (bufsize_t)(p - start); } | ||
.? { return 0; } | ||
*/ | ||
} | ||
|
||
bufsize_t _scan_table_row_end(const unsigned char *p) | ||
{ | ||
const unsigned char *marker = NULL; | ||
const unsigned char *start = p; | ||
/*!re2c | ||
spacechar* newline { return (bufsize_t)(p - start); } | ||
.? { return 0; } | ||
*/ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.