smu

Simple markup processor
git clone https://git.sinitax.com/codemadness/smu
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

commit 8ccc68ccca20b1c6ae4022e0ab271661c1e11edc
parent f3aed972b9371e30d2f31a1ad99950c42734e5f5
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Tue, 11 May 2021 01:52:02 +0200

order includes

Diffstat:
Msmu.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/smu.c b/smu.c @@ -2,12 +2,12 @@ * Copyright (C) <2007, 2008> Enno Boland <g s01 de> * * See LICENSE for further informations - */ + + #include <ctype.h> */ #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <ctype.h> #define LENGTH(x) sizeof(x)/sizeof(x[0]) #define ADDC(b,i) if(i % BUFSIZ == 0) { b = realloc(b, (i + BUFSIZ) * sizeof(char)); if(!b) eprint("malloc"); } b[i]