// Copyright (C) <2007, 2008> Enno Boland // SPDX-FileCopyrightText: (C) 2007 - 2014 Enno Boland // SPDX-License-Identifier: MIT #include /** * Converts contents of a simple markup stream (in) and prints them to out. * If suppresshtml == 1, it will create plain text of the simple markup instead * of HTML. * * Returns 0 on success. */ int scq_convert(FILE *out, FILE *in, int suppresshtml); /** utility */ void eprint(const char *format, ...);