summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--examples/advanced.c (renamed from advanced_example.c)4
-rw-r--r--examples/advanced.md (renamed from advanced_example.md)0
-rw-r--r--examples/benchmark.c (renamed from benchmark.c)6
-rw-r--r--examples/demos.c (renamed from demos.c)8
-rw-r--r--examples/others/bytell_hash_map.hpp (renamed from others/bytell_hash_map.hpp)0
-rw-r--r--examples/others/flat_hash_map.hpp (renamed from others/flat_hash_map.hpp)0
-rw-r--r--examples/others/khash.h (renamed from others/khash.h)0
-rw-r--r--examples/others/khashl.h (renamed from others/khashl.h)0
-rw-r--r--examples/others/robin_hood.hpp (renamed from others/robin_hood.hpp)0
-rw-r--r--examples/rngtest.c (renamed from rngtest.c)2
10 files changed, 10 insertions, 10 deletions
diff --git a/advanced_example.c b/examples/advanced.c
index 6649ab29..092e3f01 100644
--- a/advanced_example.c
+++ b/examples/advanced.c
@@ -9,8 +9,8 @@ The difficulty with the hash function is that if your key type consists of sever
Assuming a key-type like this, and want string as value, we define the functions person_make(), person_destroy() and person_compare():
```*/
#include <stdio.h>
-#include "stc/chash.h"
-#include "stc/cstring.h"
+#include "../stc/chash.h"
+#include "../stc/cstring.h"
struct Person {
CString name;
diff --git a/advanced_example.md b/examples/advanced.md
index 031db20d..031db20d 100644
--- a/advanced_example.md
+++ b/examples/advanced.md
diff --git a/benchmark.c b/examples/benchmark.c
index 7d0c9e48..bf516e28 100644
--- a/benchmark.c
+++ b/examples/benchmark.c
@@ -1,6 +1,6 @@
-#include "stc/crandom.h"
-#include "stc/cstring.h"
-#include "stc/chash.h"
+#include "../stc/crandom.h"
+#include "../stc/cstring.h"
+#include "../stc/chash.h"
#include "others/khash.h"
#include <stdio.h>
diff --git a/demos.c b/examples/demos.c
index 5735a900..b2fa32ec 100644
--- a/demos.c
+++ b/examples/demos.c
@@ -1,7 +1,7 @@
-#include "stc/cvector.h"
-#include "stc/clist.h"
-#include "stc/chash.h"
-#include "stc/cstring.h"
+#include "../stc/cvector.h"
+#include "../stc/clist.h"
+#include "../stc/chash.h"
+#include "../stc/cstring.h"
void stringdemo1()
diff --git a/others/bytell_hash_map.hpp b/examples/others/bytell_hash_map.hpp
index 2e348cdb..2e348cdb 100644
--- a/others/bytell_hash_map.hpp
+++ b/examples/others/bytell_hash_map.hpp
diff --git a/others/flat_hash_map.hpp b/examples/others/flat_hash_map.hpp
index ea20af93..ea20af93 100644
--- a/others/flat_hash_map.hpp
+++ b/examples/others/flat_hash_map.hpp
diff --git a/others/khash.h b/examples/others/khash.h
index 61dabc4d..61dabc4d 100644
--- a/others/khash.h
+++ b/examples/others/khash.h
diff --git a/others/khashl.h b/examples/others/khashl.h
index 3542ba98..3542ba98 100644
--- a/others/khashl.h
+++ b/examples/others/khashl.h
diff --git a/others/robin_hood.hpp b/examples/others/robin_hood.hpp
index 48b21f21..48b21f21 100644
--- a/others/robin_hood.hpp
+++ b/examples/others/robin_hood.hpp
diff --git a/rngtest.c b/examples/rngtest.c
index ead389ff..4a39c4e6 100644
--- a/rngtest.c
+++ b/examples/rngtest.c
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <time.h>
-#include "stc/crandom.h"
+#include "../stc/crandom.h"
#ifdef __cplusplus
#include <random>
#endif