c_lib is a C++ library (specifically libdiskerror_audio) focused on audio file processing (WAVE, AIFF). It also includes a command-line application helper (clapp).
- Language: C++23
- Dependencies: Boost (specifically
boost/cstdfloat.hpp,boost/endian/arithmetic.hpp). - Build System: GNU Make
- Structure: Source files are in the root. Object files go to
build/. Compiled libraries go tolib/.
- AudioFile: Handling of WAVE and AIFF audio file formats.
- BigFloat80: Software implimented conversion of stored big-endian 80-bit float.
- clapp: "Command Line APPlication" - A base class for building CLI tools.
The project uses a Makefile for compilation.
makeNote: The Makefile is currently configured with specific include paths for macOS (MacPorts). You may need to adjust CXXFLAGS in the Makefile if your environment differs.
- Source Extension:
.cpis used for C++ source files (instead of.cpp). - Header Extension:
.h - Namespace: Code is contained within the
Diskerrornamespace. ``