//! CCSDS C2 CLI subcommand
//!
//! This subcommand can be used to generate the C2 LDPC code (rate ~7/8)
//! described in the CCSDS TM Synchronization and Channel Coding Blue Book
//! standard. It will print the alist of the parity check matrix to
//! `stdout`. See [`crate::codes::ccsds`] for more information about the CCSDS
//! LDPC codes.
//!
//! # Examples
//! The parity check matrix can be generated with
//! ```shell
//! $ ldpc-toolbox ccsds-c2
//! ```
use crate*;
use crateC2Code;
use Parser;
/// CCSDS CLI arguments.