Started 'bigint_t' implementation

This commit is contained in:
2025-11-10 16:23:50 +01:00
parent 574877eba7
commit 4240f5db66
5 changed files with 328 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
#define SET_MSG(result, msg) \
snprintf((char *)result.message, RESULT_MSG_SIZE, msg)
do { \
snprintf((char *)(result).message, RESULT_MSG_SIZE, "%s", (const char *)msg); \
} while (0)
#include <stdio.h>
#include <stdlib.h>