From 22726f1e87a4fa668b67f276b61231297931359f Mon Sep 17 00:00:00 2001 From: ZoRo Date: Sat, 5 Sep 2020 19:34:06 +0100 Subject: initial commit --- Makefile | 7 +++++ fractal.c | 17 ++++++++++++ koh.c | 1 + koh.h | 26 +++++++++++++++++++ utstack.h | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 139 insertions(+) create mode 100644 Makefile create mode 100644 fractal.c create mode 100644 koh.c create mode 100644 koh.h create mode 100644 utstack.h diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dc702c4 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ + +CC=gcc + +make: + $(CC) -c koh.c + $(CC) -c fractal.c + $(CC) koh.o fractal.o -o fractal \ No newline at end of file diff --git a/fractal.c b/fractal.c new file mode 100644 index 0000000..dcab68b --- /dev/null +++ b/fractal.c @@ -0,0 +1,17 @@ +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +int main() +{ + return 0; +} + + diff --git a/koh.c b/koh.c new file mode 100644 index 0000000..23e579c --- /dev/null +++ b/koh.c @@ -0,0 +1 @@ +#include "koh.h" \ No newline at end of file diff --git a/koh.h b/koh.h new file mode 100644 index 0000000..6018fb9 --- /dev/null +++ b/koh.h @@ -0,0 +1,26 @@ +#ifndef __KOH_H +#define __KOH_H + +#include +#include +#include +#include +#include +#include +#include + +typedef struct +{ + int k; + int levels; +} koh_config; + +typedef struct +{ + int x1,y1,x2,y2; + int level; + int r,g,b,a; + int invisible; +} koh_node; + +#endif \ No newline at end of file diff --git a/utstack.h b/utstack.h new file mode 100644 index 0000000..3b0c1a0 --- /dev/null +++ b/utstack.h @@ -0,0 +1,88 @@ +/* +Copyright (c) 2018-2018, Troy D. Hanson http://troydhanson.github.com/uthash/ +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER +OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef UTSTACK_H +#define UTSTACK_H + +#define UTSTACK_VERSION 2.1.0 + +/* + * This file contains macros to manipulate a singly-linked list as a stack. + * + * To use utstack, your structure must have a "next" pointer. + * + * ----------------.EXAMPLE ------------------------- + * struct item { + * int id; + * struct item *next; + * } + * + * struct item *stack = NULL: + * + * int main() { + * int count; + * struct item *tmp; + * struct item *item = malloc(sizeof *item); + * item->id = 42; + * STACK_COUNT(stack, tmp, count); assert(count == 0); + * STACK_PUSH(stack, item); + * STACK_COUNT(stack, tmp, count); assert(count == 1); + * STACK_POP(stack, item); + * free(item); + * STACK_COUNT(stack, tmp, count); assert(count == 0); + * } + * -------------------------------------------------- + */ + +#define STACK_TOP(head) (head) + +#define STACK_EMPTY(head) (!(head)) + +#define STACK_PUSH(head,add) \ + STACK_PUSH2(head,add,next) + +#define STACK_PUSH2(head,add,next) \ +do { \ + (add)->next = (head); \ + (head) = (add); \ +} while (0) + +#define STACK_POP(head,result) \ + STACK_POP2(head,result,next) + +#define STACK_POP2(head,result,next) \ +do { \ + (result) = (head); \ + (head) = (head)->next; \ +} while (0) + +#define STACK_COUNT(head,el,counter) \ + STACK_COUNT2(head,el,counter,next) \ + +#define STACK_COUNT2(head,el,counter,next) \ +do { \ + (counter) = 0; \ + for ((el) = (head); el; (el) = (el)->next) { ++(counter); } \ +} while (0) + +#endif /* UTSTACK_H */ -- cgit v1.2.3