diff options
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h new file mode 100644 index 0000000..5ef6a2c --- /dev/null +++ b/src/util.h @@ -0,0 +1,22 @@ +/* + * ===================================================================================== + * + * Filename: util.h + * + * Description: Helpful utility functions for dealing with common issues + * + * Version: 1.0 + * Created: 01/28/2022 03:43:56 PM + * Revision: none + * Compiler: gcc + * + * Author: Cara Salter (cara@devcara.com), + * Organization: Muirrum Software Workshops + * + * ===================================================================================== + */ + +#include <ctype.h> +#include <string.h> + +char* trimwhitespace(char* str); |