This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ics_cli/src/remove_whitespace.h
2023-08-15 16:31:07 +02:00

9 lines
281 B
C

// this function removes all new lines and carriage returns from a string
// you might want to write a new function that replaces '\r' and '\n'
// with a delimiter of user's choice
#pragma once
void remove_nl_and_cr(char raw_string[]);
void remove_whitespace(char raw_string[]);