sdl

FORK: Simple Directmedia Layer
git clone https://git.neptards.moe/neptards/sdl.git
Log | Files | Refs

SDL_visualtest_mischelper.h (582B)


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