tools.h 313 B

12345678910111213141516171819202122
  1. /*
  2. * Tools
  3. *
  4. * Philippe G. 2019, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. */
  10. #pragma once
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. void utf8_decode(char *src);
  15. void url_decode(char *url);
  16. #ifdef __cplusplus
  17. }
  18. #endif