author | Ryan C. Gordon |
Sun, 31 May 2015 11:38:10 -0400 | |
changeset 9688 | 596a3da0c9cb |
parent 7924 | fcb86d323770 |
child 11382 | 2c50e79b19e0 |
permissions | -rw-r--r-- |
icculus@7924 | 1 |
/** |
icculus@7924 | 2 |
* \file mischelper.c |
icculus@7924 | 3 |
* |
icculus@7924 | 4 |
* Header with miscellaneous helper functions. |
icculus@7924 | 5 |
*/ |
icculus@7924 | 6 |
|
icculus@7924 | 7 |
#ifndef _SDL_visualtest_mischelper_h |
icculus@7924 | 8 |
#define _SDL_visualtest_mischelper_h |
icculus@7924 | 9 |
|
icculus@7924 | 10 |
/* Set up for C function definitions, even when using C++ */ |
icculus@7924 | 11 |
#ifdef __cplusplus |
icculus@7924 | 12 |
extern "C" { |
icculus@7924 | 13 |
#endif |
icculus@7924 | 14 |
|
icculus@7924 | 15 |
/** |
icculus@7924 | 16 |
* Stores a 32 digit hexadecimal string representing the MD5 hash of the |
icculus@7924 | 17 |
* string \c str in \c hash. |
icculus@7924 | 18 |
*/ |
icculus@7924 | 19 |
void SDLVisualTest_HashString(char* str, char hash[33]); |
icculus@7924 | 20 |
|
icculus@7924 | 21 |
/* Ends C function definitions when using C++ */ |
icculus@7924 | 22 |
#ifdef __cplusplus |
icculus@7924 | 23 |
} |
icculus@7924 | 24 |
#endif |
icculus@7924 | 25 |
|
icculus@7924 | 26 |
#endif /* _SDL_visualtest_mischelper_h */ |