Added logging library and udp2file.

Updated README to reflect.
This commit is contained in:
2025-09-13 00:31:42 +01:00
parent 076cf21fdf
commit b565f0a093
4 changed files with 893 additions and 1 deletions

View File

@ -1,3 +1,13 @@
# Utilities
Collection of C programs to perform various utilities and provide examples.
Collection of C programs to perform various utilities and provide examples.
Compilation instructions are given at the top of each source file, or in a README if a Makefile is used.
## Logging
A general purpose logging library with optional timestamping and terminal colouring for log message severity.
This is used by most applications I build, certainly all within this repository.
## Networking
Contains a standard UDP listener implementation that writes to a file.