diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-11-02 21:56:58 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-11-02 21:56:58 -0500 |
| commit | 26da453832ca90ce22415a59a2aab57ab16cba66 (patch) | |
| tree | f773bf84632158537fc72a9b869cd87066d73946 /src/variables.c | |
| parent | f84e64b593c6e6fda9e2a907d25ed99d8742d619 (diff) | |
| download | hush-26da453832ca90ce22415a59a2aab57ab16cba66.tar.gz | |
Comment header + clang tidy
Diffstat (limited to 'src/variables.c')
| -rw-r--r-- | src/variables.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/variables.c b/src/variables.c index c478d9d..b852a11 100644 --- a/src/variables.c +++ b/src/variables.c @@ -1,7 +1,14 @@ -/* +/* + * src/variables.c + * + * Local variable storage and access + * CISC 301 -- Operating Systems, Project 2 + * + * Copyright (C) 2025 Douglas B. Rumbaugh <dbrumbaugh@harrisburgu.edu> + * + * Distributed under the Modified BSD License * */ - #include "variables.h" #include "strmap.h" |