scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit f563f208aebc62dc2087d545f3b5bcde1a254db0
parent 1442c1da6a94c2355ba0b11292086e9e9f698d4d
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun, 16 Sep 2018 07:04:54 +0100

[lib/c] Recover all value of MB_LEN_MAX

This library tries to be as simple as possible and one
of the places were we are going to sacrifice things is
in multi byte strings, where we are not going to support
utf8.

Diffstat:
Mrootdir/include/scc/limits.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rootdir/include/scc/limits.h b/rootdir/include/scc/limits.h @@ -3,6 +3,6 @@ #include <arch/limits.h> -#define MB_LEN_MAX 4 +#define MB_LEN_MAX 1 #endif