2
0

cpp_tools.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. *
  3. * Sebastien L. 2023, sle118@hotmail.com
  4. * Philippe G. 2023, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. * License Overview:
  10. * ----------------
  11. * The MIT License is a permissive open source license. As a user of this software, you are free to:
  12. * - Use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
  13. * - Use the software for private, commercial, or any other purposes.
  14. *
  15. * Conditions:
  16. * - You must include the above copyright notice and this permission notice in all
  17. * copies or substantial portions of the Software.
  18. *
  19. * The MIT License offers a high degree of freedom and is well-suited for both open source and
  20. * commercial applications. It places minimal restrictions on how the software can be used,
  21. * modified, and redistributed. For more details on the MIT License, please refer to the link above.
  22. */
  23. #ifdef __cplusplus
  24. #include <string>
  25. /**
  26. * @brief Trims leading and trailing whitespace from a string.
  27. *
  28. * This function removes all leading and trailing spaces from the given string.
  29. * It does not modify the original string but returns a new trimmed string.
  30. *
  31. * @param str The string to trim.
  32. * @return std::string A new string with leading and trailing spaces removed.
  33. */
  34. std::string trim(const std::string& str);
  35. /**
  36. * @brief Converts a string to lowercase.
  37. *
  38. * This function modifies the given string in place, converting all characters
  39. * to their lowercase equivalents.
  40. *
  41. * @param str Reference to the string to be converted to lowercase.
  42. * @return std::string& Reference to the modified string.
  43. */
  44. std::string& toLowerStr(std::string& str);
  45. #endif