blob: de4f491fdf7dd3d530993a7ab3742515a562c7c3 (
plain) (
tree)
|
|
/*
* =====================================================================================
*
* 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);
|