Re: Sozobon C's a bit broken isn't it?
Posted: 24 Jan 2021 18:44
Its not really broken. Its just that typeof(size_t) in this compiler is unsigned int (16bit). You have the same problem when using ancient DOS-compilers, when the pointers are also 16bit only. There you would not even be able to use far pointers for that, only Borland-C with _huge pointers will work.stephen_usher wrote: 24 Jan 2021 16:58 It looks like all tests and arithmetic, even on pointers, is 16 bit only, and unsigned arithmetic seems to be sort of signed. That's rather broken.
As already mentioned, there are also command line versions of the compiler, assembler and linker. There is even a commandline-tool that i wrote some time ago that can process a project-file, if you don't like make. https://github.com/th-otto/pcmakePure C is far too GUI for me