tllist 1.1.0-1 source package in Ubuntu

Changelog

tllist (1.1.0-1) unstable; urgency=medium

  * New upstream release
  * Bump Standards-Version to 4.6.1.0 (no changes required)
  * Update years in d/copyright

 -- Birger Schacht <email address hidden>  Sun, 07 Aug 2022 18:32:11 +0200

Upload details

Uploaded by:
Birger Schacht
Uploaded to:
Sid
Original maintainer:
Birger Schacht
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Downloads

File Size SHA-256 Checksum
tllist_1.1.0-1.dsc 1.8 KiB d82c362524000dcfc6c716f2c1aac4db08d5c1facb4ebdb085b1434fe3828da6
tllist_1.1.0.orig.tar.gz 7.5 KiB 85d33ecfa67b47ddf9586fda37b74d6f09c5b630275efdda6ab9d044e5da0ac2
tllist_1.1.0-1.debian.tar.xz 2.0 KiB c400548947c9a40f291afa7a18908f205c7ff0794f4e048dddb98e95bd0a9d5a

Available diffs

No changes file available.

Binary packages built by this source

libtllist-dev: 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.