aboutsummaryrefslogtreecommitdiffstats
path: root/src/hush.c
diff options
context:
space:
mode:
authorDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-11-02 21:56:58 -0500
committerDouglas B. Rumbaugh <doug@douglasrumbaugh.com>2025-11-02 21:56:58 -0500
commit26da453832ca90ce22415a59a2aab57ab16cba66 (patch)
treef773bf84632158537fc72a9b869cd87066d73946 /src/hush.c
parentf84e64b593c6e6fda9e2a907d25ed99d8742d619 (diff)
downloadhush-26da453832ca90ce22415a59a2aab57ab16cba66.tar.gz
Comment header + clang tidy
Diffstat (limited to 'src/hush.c')
-rw-r--r--src/hush.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/hush.c b/src/hush.c
index 2d40aa7..f5d7dab 100644
--- a/src/hush.c
+++ b/src/hush.c
@@ -1,10 +1,16 @@
/*
- * hush -- the HU Shell
+ * src/hush.c
*
+ * HUSH -- The HU Shell
* A minimal shell for CISC 301, Operating Systems
*
+ * CISC 301 -- Operating Systems, Project 2
+ *
+ * Copyright (C) 2025 Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu>
+ *
+ * Distributed under the Modified BSD License
+ *
*/
-
#include <stdio.h>
#include <stdlib.h>
#include <string.h>