Sponsor:

Your company here, and a link to your site. Click to find out more.

lowdown_file_diff - Man Page

parse and diff Markdown files into formatted output

Library

library “liblowdown”

Synopsis

#include <sys/queue.h>
#include <stdio.h>
#include <lowdown.h>

int
lowdown_file_diff(const struct lowdown_opts *opts, FILE *fnew, FILE *fold, char **ret, size_t *retsz);

Description

Parses lowdown(5) file streams fnew and fold and produces an edit script in ret of size retsz according to configurations opts. The output format is specified by opts->type.

On success, the caller is responsible for freeing ret.

Return Values

Returns zero on failure, non-zero on success. Failure occurs when the file read failed or on memory exhaustion. On failure, the contents of ret and retsz are undefined.

See Also

lowdown(3)

Referenced By

lowdown(3), lowdown_metaq_free(3).

February 3, 2024