aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.h
blob: caa5187355cc96c648b463e0c90e6a402aeb0d49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * include/config.h
 *
 * Configuration parameters and constants for HUSH
 * CISC 301 -- Operating Systems, Project 2
 *
 * Copyright (C) 2025  Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu>
 *
 * Distributed under the Modified BSD License
 *
 */
#ifndef H_HUSH_CONFIG
#define H_HUSH_CONFIG

#include <stdlib.h>

static const size_t MAX_LINE_LEN = 1024;
#define MAX_ARGUMENT_CNT 8

#endif