]> git.lizzy.rs Git - dragonstd.git/commitdiff
Rename to dragonstd
authorElias Fleckenstein <eliasfleckenstein@web.de>
Mon, 24 Jan 2022 12:12:13 +0000 (13:12 +0100)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Mon, 24 Jan 2022 12:12:13 +0000 (13:12 +0100)
README.md
array.h
bintree.h
list.h
number.h
queue.h

index d6df5350ab551d6e5e4999a9bbe88c149d360384..000c278ee8344515d83a34d8064c06abe45c46bb 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-# Dragontype
-Dragontype is a small C library providing the types that [dragonblocks_alpha](https://github.com/dragonblocks/dragonblocks_alpha) uses.
+# Dragonstd
+Dragonstd is a small C library providing the types that [dragonblocks_alpha](https://github.com/dragonblocks/dragonblocks_alpha) uses.
 It serves a similar purpose as the C++ standard library would, but C++ is just bloated af.
 This library is only capable of what dragonblocks needs, and it does not intend to be general purpose.
 
diff --git a/array.h b/array.h
index 39a754de32bd251f5c34f89993043408ea66d23c..9f2ec54049025a55dca46c77c500eba9dcbbd779 100644 (file)
--- a/array.h
+++ b/array.h
@@ -1,8 +1,8 @@
-#ifndef _DRAGONTYPE_ARRAY_H_
-#define _DRAGONTYPE_ARRAY_H_
+#ifndef _DRAGONSTD_ARRAY_H_
+#define _DRAGONSTD_ARRAY_H_
 
-#ifndef DRAGONTYPE_ARRAY_REALLOC_EXTRA
-#define DRAGONTYPE_ARRAY_REALLOC_EXTRA 25
+#ifndef DRAGONSTD_ARRAY_REALLOC_EXTRA
+#define DRAGONSTD_ARRAY_REALLOC_EXTRA 25
 #endif
 
 #include <stddef.h>
index 171eb35fc06f34b2ee7445d605846bea83decef0..830a64c15a8978b1a9d155b431ba62ba2dc66e3d 100644 (file)
--- a/bintree.h
+++ b/bintree.h
@@ -1,5 +1,5 @@
-#ifndef _DRAGONTYPE_BINTREE_H_
-#define _DRAGONTYPE_BINTREE_H_
+#ifndef _DRAGONSTD_BINTREE_H_
+#define _DRAGONSTD_BINTREE_H_
 
 #include <stddef.h>
 
diff --git a/list.h b/list.h
index 8e4d844bf96f7da4d7ed433eba4cddfa89ccd48c..034bf091652b6bc3946f91d41acba31f99694e18 100644 (file)
--- a/list.h
+++ b/list.h
@@ -1,5 +1,5 @@
-#ifndef _DRAGONTYPE_LIST_H_
-#define _DRAGONTYPE_LIST_H_
+#ifndef _DRAGONSTD_LIST_H_
+#define _DRAGONSTD_LIST_H_
 
 #include <stdbool.h>
 
index 9e4730acefec0f9140d0858d0253fa4aef0adb36..44e4313b40dc3d45c819ed693d103fdc18b1f0ea 100644 (file)
--- a/number.h
+++ b/number.h
@@ -1,5 +1,5 @@
-#ifndef _DRAGONTYPE_NUMBER_H_
-#define _DRAGONTYPE_NUMBER_H_
+#ifndef _DRAGONSTD_NUMBER_H_
+#define _DRAGONSTD_NUMBER_H_
 
 #include <stdint.h>
 #include <stdbool.h>
diff --git a/queue.h b/queue.h
index da69686195fe676b07d1f4bc22e9950dbb1762d2..48829cbda5da05158adb7289a6c195ce8517bd63 100644 (file)
--- a/queue.h
+++ b/queue.h
@@ -1,5 +1,5 @@
-#ifndef _DRAGONTYPE_QUEUE_H_
-#define _DRAGONTYPE_QUEUE_H_
+#ifndef _DRAGONSTD_QUEUE_H_
+#define _DRAGONSTD_QUEUE_H_
 
 #include <pthread.h>
 #include "list.h"