mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 09:16:52 +00:00
13 lines
171 B
C++
13 lines
171 B
C++
#ifndef GUARD_OLC_MD5_HPP
|
|
#define GUARD_OLC_MD5_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace online_compile {
|
|
|
|
std::string md5(std::string s);
|
|
|
|
} // namespace online_compile
|
|
|
|
#endif
|