first test isgood

This commit is contained in:
2023-07-17 00:35:57 +02:00
parent b9bef119dc
commit 0a9337e675
9 changed files with 242 additions and 314 deletions
+13
View File
@@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdlib.h>
#include "src/permutation_t/permutation_t.h"
int main(){
PERMUTATION_TYPE_CHAR *p = CREATE_PERMUTATION_TYPE_CHAR(3);
printf(" size = %u \n",p->size);
return 0;
}