From 061cfc8ef6c990d5e1339eed021e0c445d040de8 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Mon, 24 Jan 2022 13:12:13 +0100 Subject: [PATCH] Rename to dragonstd --- README.md | 4 ++-- array.h | 8 ++++---- bintree.h | 4 ++-- list.h | 4 ++-- number.h | 4 ++-- queue.h | 4 ++-- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index d6df535..000c278 100644 --- 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 39a754d..9f2ec54 100644 --- 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 diff --git a/bintree.h b/bintree.h index 171eb35..830a64c 100644 --- 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 diff --git a/list.h b/list.h index 8e4d844..034bf09 100644 --- 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 diff --git a/number.h b/number.h index 9e4730a..44e4313 100644 --- 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 #include diff --git a/queue.h b/queue.h index da69686..48829cb 100644 --- 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 #include "list.h" -- 2.44.0