extracted prick into their own header files and deleted lib

This commit is contained in:
2026-03-10 21:08:24 +00:00
parent f811665ae9
commit 24f4962d8c
8 changed files with 250 additions and 236 deletions

13
main.c
View File

@@ -10,17 +10,10 @@
#include <string.h>
#include <time.h>
#include "./lib/prick_aliases.h"
#include "base.h"
#include "sv.h"
#include "vec.h"
#define SV_IMPL
#include "./lib/prick_sv.h"
#define VEC_IMPL
#include "./lib/prick_vec.h"
#define SAFE_SUB(A, B) ((A) < (B) ? 0 : (A) - (B))
#define SIZEOF_PROGRAM (1LU << 6)
struct ProgramConcat
{
sv_t A, B;