From de8c6398f269c9fa14842c170b5b21651e817f9b Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Thu, 26 Jul 2018 01:21:56 -0400 Subject: removed some files that are now unused --- lib/stack.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 lib/stack.h (limited to 'lib/stack.h') diff --git a/lib/stack.h b/lib/stack.h deleted file mode 100644 index 8d25aff..0000000 --- a/lib/stack.h +++ /dev/null @@ -1,35 +0,0 @@ - -#pragma once - -#include -#include -#include -#include - -#include "types.h" - - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct ll_tag { - v_t x; - struct ll_tag *next; -} ll_t; - -typedef struct dll_tag { - double x; - struct dll_tag *next; -} dll_t; - -void stack_push(ll_t **q, v_t x); -void stack_push_d(dll_t **q, double x); - -v_t stack_pop(ll_t **q); -double stack_pop_d(dll_t **q); - -#ifdef __cplusplus -} -#endif - -- cgit v1.2.3-70-g09d2