tllist 1.0.5-1 source package in Ubuntu

Changelog

tllist (1.0.5-1) unstable; urgency=medium

  * New upstream release
  * Fix watchfile
  * Bump Standards-Version to 4.6.0.1 (no changes required)
  * Update Vcs-URLs

 -- Birger Schacht <email address hidden>  Sun, 07 Nov 2021 09:57:15 +0100

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
Jammy release universe misc

Downloads

File Size SHA-256 Checksum
tllist_1.0.5-1.dsc 1.8 KiB 84d00c6dff8debacce876302d03c576cad29cdd17b541dc1527d42f9efe5856b
tllist_1.0.5.orig.tar.gz 6.9 KiB 26184ee6b8776b8055b10be14681483d4de8daef46775756c31abf5c6cc046c1
tllist_1.0.5-1.debian.tar.xz 2.0 KiB 881af5ce542bcb68e1db752487fa91ddc62b065db3ad3aa1e7c2276ffc5c2590

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.