blob: de4f491fdf7dd3d530993a7ab3742515a562c7c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* =====================================================================================
*
* 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>
#include "log.h"
char* trimwhitespace(char* str);
int cut_str(char* str, int begin, int len);
|