[ ソース: tllist ]
パッケージ: libtllist-dev (1.0.4-1)
libtllist-dev に関するリンク
Debian の資源:
tllist ソースパッケージをダウンロード:
メンテナ:
外部の資源:
- ホームページ [codeberg.org]
類似のパッケージ:
C header file only implementation of a typed linked list
Most C implementations of linked list are untyped. That is, their data carriers are typically void *. This is error prone since your compiler will not be able to help you correct your mistakes.
tllist addresses this by using pre-processor macros to implement dynamic types, where the data carrier is typed to whatever you want; both primitive data types are supported as well as aggregated ones such as structs, enums and unions.