.github
CMakeModules
dist
externals
SDL
.github
VisualC
VisualC-WinRT
Xcode
Xcode-iOS
acinclude
android-project
android-project-ant
build-scripts
cmake
debian
docs
include
src
test
visualtest
configs
docs
include
SDL_visualtest_action_configparser.h
SDL_visualtest_exhaustive_variator.h
SDL_visualtest_harness_argparser.h
SDL_visualtest_mischelper.h
SDL_visualtest_parsehelper.h
SDL_visualtest_process.h
SDL_visualtest_random_variator.h
SDL_visualtest_rwhelper.h
SDL_visualtest_screenshot.h
SDL_visualtest_sut_configparser.h
SDL_visualtest_variator_common.h
SDL_visualtest_variators.h
src
unittest
COPYING.txt
Makefile.in
README.txt
acinclude.m4
autogen.sh
compile
config.h
config.h.in
configure
configure.in
depcomp
install-sh
launch_harness.cmd
launch_harness.sh
missing
stamp-h1
testsprite2_sample.actions
testsprite2_sample.config
testsprite2_sample.parameters
wayland-protocols
.gitignore
.hgignore
Android.mk
BUGS.txt
CMakeLists.txt
COPYING.txt
CREDITS.txt
INSTALL.txt
LICENSE.txt
Makefile.in
Makefile.minimal
Makefile.os2
Makefile.pandora
Makefile.psp
Makefile.wiz
README-SDL.txt
README.md
README.txt
SDL2.spec.in
SDL2Config.cmake
TODO.txt
VisualC.html
WhatsNew.txt
autogen.sh
cmake_uninstall.cmake.in
configure
configure.ac
sdl2-config-version.cmake.in
sdl2-config.cmake.in
sdl2-config.in
sdl2.m4
sdl2.pc.in
Vulkan-Headers
cmake-modules
cpp-httplib
cubeb
discord-rpc
dynarmic
ffmpeg
find-modules
getopt
glad
httplib
inih
libressl
libusb
libzip
mbedtls
microprofile
opus
sirit
soundtouch
xbyak
CMakeLists.txt
patches
src
CMakeLists.txt
LICENSE
README.md
license.txt
29 lines
582 B
C
Executable File
29 lines
582 B
C
Executable File
/**
|
|
* \file mischelper.c
|
|
*
|
|
* Header with miscellaneous helper functions.
|
|
*/
|
|
|
|
#ifndef SDL_visualtest_mischelper_h_
|
|
#define SDL_visualtest_mischelper_h_
|
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Stores a 32 digit hexadecimal string representing the MD5 hash of the
|
|
* string \c str in \c hash.
|
|
*/
|
|
void SDLVisualTest_HashString(char* str, char hash[33]);
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SDL_visualtest_mischelper_h_ */
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|