stage0 VS ccan

Compare stage0 vs ccan and see what are their differences.

stage0

A set of minimal dependency bootstrap binaries (by oriansj)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
stage0 ccan
22 13
888 1,041
- -
3.9 3.4
3 months ago 2 months ago
Assembly C
GNU General Public License v3.0 only -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

stage0

Posts with mentions or reviews of stage0. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-25.

ccan

Posts with mentions or reviews of ccan. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-22.
  • Memory leak proof every C program
    1 project | news.ycombinator.com | 20 Jan 2024
    Hilarious!

    But I remember the first time I saw such a program which never freed anything: jitterbug, the simple bug tracker which ran as a CGI script.

    It indeed allows a very simple style!

    Meanwhile, use ccan/tal (https://github.com/rustyrussell/ccan/blob/master/ccan/tal/_i...) and be happy :)

  • Popular Data Structure Libraries in C ?
    13 projects | /r/C_Programming | 22 Mar 2023
    There's CCAN, maintained by kernel hacker Rusty Russell: http://ccodearchive.net/
  • My review of the C standard library in practice
    3 projects | news.ycombinator.com | 11 Feb 2023
    Please note that the above link has been claimed by squatters and isn’t the right link for CCAN anymore! The maintainer suggests [1] just using the GitHub repo [2] instead.

    [1] https://lists.ozlabs.org/pipermail/ccan/2022-September/00141...

    [2] https://github.com/rustyrussell/ccan/

  • [ROAST MY CODE] Implementing generic vector in C
    1 project | /r/C_Programming | 15 Nov 2022
    This is a great learning exercise but not very useful because using void* creates practical problems that the compiler cant help you with. IMHO, for a nice vector in C look at https://github.com/rustyrussell/ccan/blob/master/ccan/darray/darray.h
  • Common libraries and data structures for C
    15 projects | news.ycombinator.com | 16 May 2022
  • Toward a better list iterator for the Linux kernel
    4 projects | news.ycombinator.com | 10 Mar 2022
    For more advanced intrusive lists in C, I've found that ccan's tlist2 (https://github.com/rustyrussell/ccan/blob/master/ccan/tlist2...) provides a decent model here.

    Compared to the linux kernel's intrusive lists, it also tracks the offset of the list_node within the structure contained by the list, which eliminates another class of problems. It does still have the "using the iterator after the for loop is over" issue discussed in this article, but it also already tracks the types as Linus proposed doing in the article to resolve the issue.

  • Good C Source Code
    12 projects | /r/C_Programming | 6 Jan 2022
    ccan library https://github.com/rustyrussell/ccan I think it is used also in the linux kernel(?)
  • What are your favorite C resources? They can be either for learning or reference.
    2 projects | /r/C_Programming | 6 Nov 2021
    ccan (analagous to cpan, but for C rather than Perl.)
  • Dynamic link list
    2 projects | /r/C_Programming | 21 Oct 2021
    You could use a discriminated union in your list node. You could use a void pointer in your list node, allocate space as needed and memcpy the date into this space, or don't allocate and store pointers to the original data. You could use an intrusive list, like this.
  • The Byte Order Fiasco
    7 projects | news.ycombinator.com | 8 May 2021
    The fallacy in the article is that anyone should code these functions. There's plenty of public domain libraries that do this correctly.

    https://github.com/rustyrussell/ccan/blob/master/ccan/endian...

What are some alternatives?

When comparing stage0 and ccan you can also consider the following projects:

rizin - UNIX-like reverse engineering framework and command-line toolset.

SQLite - Official Git mirror of the SQLite source tree

arocc - A C compiler written in Zig.

STC - A modern, user friendly, generic, type-safe and fast C99 container library: String, Vector, Sorted and Unordered Map and Set, Deque, Forward List, Smart Pointers, Bitset and Random numbers.

chibicc - A small C compiler

stb - stb single-file public domain libraries for C/C++

libcperciva - BSD-licensed C99/POSIX library code shared between tarsnap, scrypt, kivaloo, spiped, and bsdiff.

bug - Scala 2 bug reports only. Please, no questions — proper bug reports only.

limine - Modern, advanced, portable, multiprotocol bootloader.

c4 - C in four functions

GNU Emacs - Mirror of GNU Emacs