mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-09-23 01:30:04 +00:00
13 lines
233 B
C
13 lines
233 B
C
// Copyright (c) 2024 Epic Games Tools
|
|
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
|
|
#pragma once
|
|
|
|
typedef struct MD5Hash
|
|
{
|
|
U8 value[16];
|
|
} MD5Hash;
|
|
|
|
internal MD5Hash md5_hash_from_string(String8 data);
|
|
|