#include #include // Sanitize String void sanitize_string(char **str, int max_length, unsigned int allow_newlines) { // Store Message Length int length = strlen(*str); // Truncate Message if (max_length != -1 && length > max_length) { (*str)[max_length] = '\0'; length = max_length; } // Loop Through Message if (!allow_newlines) { for (int i = 0; i < length; i++) { if ((*str)[i] == '\n') { // Replace Newline (*str)[i] = ' '; } } } } // Starts With int starts_with(const char *str, const char *prefix) { return strncmp(prefix, str, strlen(prefix)) == 0; }