/* * include/config.h * * Configuration parameters and constants for HUSH * CISC 301 -- Operating Systems, Project 2 * * Copyright (C) 2025 Douglas B. Rumbaugh * * Distributed under the Modified BSD License * */ #ifndef H_HUSH_CONFIG #define H_HUSH_CONFIG #include static const size_t MAX_LINE_LEN = 1024; #define MAX_ARGUMENT_CNT 8 #endif