An alternative runtime for C11/C23 (mirror)
Go to file
bumbread d70de47c01 I have no idea but something for linux 2022-06-28 23:57:14 +11:00
inc Factor out some unicode stuff also it compiles on linux 2022-06-28 22:49:30 +11:00
src I have no idea but something for linux 2022-06-28 23:57:14 +11:00
test I have no idea but something for linux 2022-06-28 23:57:14 +11:00
.gitignore I have no idea but something for linux 2022-06-28 23:57:14 +11:00
Makefile I have no idea but something for linux 2022-06-28 23:57:14 +11:00
bake.cmd Stack checking et uchar utf8->utf16 2022-06-22 23:36:26 +11:00
build_cuik.cmd reorganize, random fixes 2022-06-16 23:36:35 +11:00
readme Update readme 2022-06-26 15:39:15 +11:00
todo Complete tgmath.h 2022-06-28 12:35:26 +11:00

readme

ABOUT
  Ciabatta  -  An implementation of CRT for x86-64 windows and linux platforms.
The  goal  is  to  provide  a  platform-independent  CRT  with  the  purpose of
explicitly  defining  some  of platform-defined behaviours in order to simplify
the development and providing additional functionality to aid the developers in
writing cross-platform applications.

Note that Undefined Behaviour is impossible to define on a CRT level, since the
semantics  of the language can only be changed at the compiler level. Sometimes
the  compilers will replace CRT function calls with builtin functions, which is
meant  as  an optimization, e.g. replacing some forms of prinf() with puts() or
replacing  strlen with an x86 rep movsb instruction. Even if ciabatta does have
a  specific  behaviour  under  given  UB  conditions,  that  behaviour  is  not
guaranteed.

The goals:
  - Providing  API  for sockets, unicode processing (not just encodings), maybe
    the  support  for  common  image  and  data  file  formats and other useful
    non-standard functionality.
  - Making  it  easy  to  port  the library to a new platform, e.g. a custom OS
    kernel or a different processor architecture.
  - Defining  implementation-defined  behaviours  of  some of the functions and
    explicitly documenting them.
  - Make it reasonably fast compared to MSVCRT and GLIBC.

PLATFORM SUPPORT
  OS/Kernel:
  - Windows (64-bit)
  - TODO: Linux
  Processor Architecture
  - x86-64

USAGE
  (TODO)

CONTRIBUTING
  Pull requests are always welcome.


LICENCE

TBD, but probably i'll make it MIT or WTFPL :kekw: