]> git.lizzy.rs Git - rust.git/blob - src/rt/sundown/src/autolink.h
Ignore tests broken by failing on ICE
[rust.git] / src / rt / sundown / src / autolink.h
1 /*
2  * Copyright (c) 2011, Vicent Marti
3  *
4  * Permission to use, copy, modify, and distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 #ifndef UPSKIRT_AUTOLINK_H
18 #define UPSKIRT_AUTOLINK_H
19
20 #include "buffer.h"
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 enum {
27         SD_AUTOLINK_SHORT_DOMAINS = (1 << 0),
28 };
29
30 int
31 sd_autolink_issafe(const uint8_t *link, size_t link_len);
32
33 size_t
34 sd_autolink__www(size_t *rewind_p, struct buf *link,
35         uint8_t *data, size_t offset, size_t size, unsigned int flags);
36
37 size_t
38 sd_autolink__email(size_t *rewind_p, struct buf *link,
39         uint8_t *data, size_t offset, size_t size, unsigned int flags);
40
41 size_t
42 sd_autolink__url(size_t *rewind_p, struct buf *link,
43         uint8_t *data, size_t offset, size_t size, unsigned int flags);
44
45 #ifdef __cplusplus
46 }
47 #endif
48
49 #endif
50
51 /* vim: set filetype=c: */