🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
582 B

  1. /**
  2. * \file mischelper.c
  3. *
  4. * Header with miscellaneous helper functions.
  5. */
  6. #ifndef SDL_visualtest_mischelper_h_
  7. #define SDL_visualtest_mischelper_h_
  8. /* Set up for C function definitions, even when using C++ */
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * Stores a 32 digit hexadecimal string representing the MD5 hash of the
  14. * string \c str in \c hash.
  15. */
  16. void SDLVisualTest_HashString(char* str, char hash[33]);
  17. /* Ends C function definitions when using C++ */
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif /* SDL_visualtest_mischelper_h_ */
  22. /* vi: set ts=4 sw=4 expandtab: */