Newer
Older
Import / research / framework / source / StringUtilities.hpp
@John Ryland John Ryland on 22 Dec 2020 372 bytes import NUC files
/************************************************
*
*  String Utilities
*  Copyright (C) 2020
*  John Ryland
*  All rights reserved
*
************************************************/
#ifndef STRING_UTILITIES_HPP
#define STRING_UTILITIES_HPP

#include <string>

namespace StringUtilities
{
    std::string removeCRLF(std::string aLine);

}

#endif // STRING_UTILITIES_HPP