order includes - smu - smu - simple markup (Markdown) processor (fork, fixes + … | |
git clone git://git.codemadness.org/smu | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 8ccc68ccca20b1c6ae4022e0ab271661c1e11edc | |
parent f3aed972b9371e30d2f31a1ad99950c42734e5f5 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Tue, 11 May 2021 01:52:02 +0200 | |
order includes | |
Diffstat: | |
M smu.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(… |