SDL_visualtest_mischelper.h 582 B

1234567891011121314151617181920212223242526272829
  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: */