Split project over multiple files

This commit is contained in:
2025-10-28 17:24:25 +01:00
parent 017c2c3428
commit c5a21608d7
24 changed files with 5145 additions and 5113 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef SHA256_INCLUDED
#define SHA256_INCLUDED
#include <stddef.h>
#include <stdint.h>
void sha256(const void *data, size_t len, uint8_t *hash);
#endif // SHA256_INCLUDED