Experimental libc
project.
Some progress page.
File | Introduced | Status |
---|---|---|
assert.h | ✗ | |
complex.h | c99 | ✗ |
ctype.h | ✗ | |
errno.h | ✗ | |
fenv.h | c99 | ✗ |
float.h | ✗ | |
inttypes.h | c99 | ✗ |
iso646.h | c95 | ✗ |
limits.h | ✗ | |
locale.h | ✗ | |
math.h | ✗ | |
setjmp.h | ✗ | |
signal.h | ✗ | |
stdalign.h | c11 | ✗ |
stdarg.h | ✗ | |
stdatomic.h | c11 | ✗ |
stdbool.h | c99 | ✗ |
stddef.h | ✗ | |
stdint.h | c99 | ✗ |
stdio.h | ✗ | |
stdlib.h | ✗ | |
stdnoreturn.h | c11 | ✗ |
string.h | ✗ | |
tgmath.h | c99 | ✗ |
threads.h | c11 | ✗ |
time.h | ✗ | |
uchar.h | c11 | ✗ |
wchar.h | c95 | ✗ |
wctype.h | c95 | ✗ |
File | Status |
---|---|
assert.h | ✗ |
complex.h | ✗ |
ctype.h | ✗ |
errno.h | ✗ |
fenv.h | ✗ |
float.h | ✗ |
inttypes.h | ✗ |
iso646.h | ✗ |
limits.h | ✗ |
locale.h | ✗ |
math.h | ✗ |
setjmp.h | ✗ |
signal.h | ✗ |
stdalign.h | ✗ |
stdarg.h | ✗ |
stdatomic.h | ✗ |
stddef.h | ✗ |
stdint.h | ✗ |
stdio.h | ✗ |
stdlib.h | ✗ |
string.h | ✗ |
tgmath.h | ✗ |
threads.h | ✗ |
time.h | ✗ |
uchar.h | ✗ |
wchar.h | ✗ |
wctype.h | ✗ |
Standart | Status |
---|---|
c90 | ✗ |
c94/c95 | ✗ |
c99 | ✗ |
c11 | ✗ |
c17/c18 | ✗ |
Some notes for experimenting.
c89 and c90 standards are only detected by STDC ( same standard - ANSI X3.159-1989 / ISO/IEC 9899:1990 )
__STDC_VERSION__ = 199409L ( c94 - ISO/IEC 9899-1:1994 )
__STDC_VERSION__ = 199901L ( c99 - ISO/IEC 9899:1999 )
__STDC_VERSION__ = 201112L ( c11 - ISO/IEC 9899:2011 )
__STDC_VERSION__ = 201710L ( c17 / c18 - ISO/IEC 9899:2018 )
__cplusplus = 199711L ( C++98 - ISO/IEC 14882:1998 )
__cplusplus = 201103L ( C++11 - ISO/IEC 14882:2011 )
__cplusplus = 201402L ( C++14 - ISO/IEC 14882:2014 )
__cplusplus = 201703L ( C++17 - ISO/IEC 14882:2017 )