project structure changed for clion

This commit is contained in:
2022-05-08 13:59:28 +03:00
parent 703bd4bef4
commit c6c70c6fcc
46 changed files with 92 additions and 29 deletions

View File

@@ -1,5 +1,5 @@
#include "tests.h"
#include "../Autoarr/Autoarr.h"
#include "../src/Autoarr/Autoarr.h"
static void printautoarr(Autoarr(uint16)* ar){
printf("\e[94mAutoarr(uint16): "

View File

@@ -1,5 +1,5 @@
#include "tests.h"
#include "../DtsodParser/DtsodV24.h"
#include "../src/DtsodParser/DtsodV24.h"
const char text[]=
"list_of_lists: [ [\"sss\"]];"
@@ -33,7 +33,7 @@ void print_dtsod(Hashtable* dtsod){
}
void test_dtsod(){
optime(__func__,1,({
//optime(__func__,1,({
printf("\e[96m-------------[test_dtsod]-------------\n");
Hashtable* dtsod;
char* s;
@@ -61,5 +61,5 @@ void test_dtsod(){
}));
free(s);
}));
//}));
}

View File

@@ -1,5 +1,5 @@
#include "tests.h"
#include "../Hashtable/Hashtable.h"
#include "../src/Hashtable/Hashtable.h"
void print_hashtable(Hashtable* ht){
printf("\e[94mHashtable: "

View File

@@ -1,4 +1,4 @@
#include "../Hashtable/KeyValuePair.h"
#include "../src/Hashtable/KeyValuePair.h"
EXPORT void CALL test_marshalling(char* text, KVPair** kptr){
KVPair* k=malloc(sizeof(KVPair));

View File

@@ -1,5 +1,5 @@
#include "tests.h"
#include "../SearchTree/SearchTree.h"
#include "../src/SearchTree/SearchTree.h"
void printstnode(STNode* node){
printf("\e[94mSTNode: "

View File

@@ -1,5 +1,5 @@
#include "tests.h"
#include "../String/string.h"
#include "../src/String/string.h"
void test_string(){
optime(__func__,1,({

View File

@@ -1,6 +1,6 @@
#pragma once
#include "../base/base.h"
#include "../src/base/base.h"
void printuni(Unitype v);