Port crypt package

This commit is contained in:
2026-01-21 19:05:46 -05:00
parent a72be0393c
commit d24202f63b
7 changed files with 144 additions and 34 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef TYPES_H
#define TYPES_H
typedef struct {
char* data;
int len;
} PascalString;
#endif