mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
18 lines
598 B
C
18 lines
598 B
C
|
#ifndef PARSING_FUNCTIONS_H
|
||
|
#define PARSING_FUNCTIONS_H
|
||
|
/* parsing_functions.c - Functions for parsing markdown and
|
||
|
* freeing element lists. */
|
||
|
|
||
|
#include "markdown_peg.h"
|
||
|
|
||
|
/* free_element_list - free list of elements recursively */
|
||
|
void free_element_list(element * elt);
|
||
|
/* free_element - free element and contents */
|
||
|
void free_element(element *elt);
|
||
|
|
||
|
element * parse_references(char *string, int extensions);
|
||
|
element * parse_notes(char *string, int extensions, element *reference_list);
|
||
|
element * parse_markdown(char *string, int extensions, element *reference_list, element *note_list);
|
||
|
|
||
|
#endif
|