summaryrefslogtreecommitdiffstats
path: root/thirdparty/wslay/wslay_stack.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2021-11-19 13:28:01 +0100
committerRémi Verschelde <rverschelde@gmail.com>2021-11-19 15:47:20 +0100
commita706ef3272e0fcd97398334da74b81d3a5ffa0a1 (patch)
tree2f77752934146692b5b40ef11debcd4840c8205a /thirdparty/wslay/wslay_stack.h
parent42f8bfaff0dc5a94ca351b1eaadc42cb95655b87 (diff)
downloadredot-engine-a706ef3272e0fcd97398334da74b81d3a5ffa0a1.tar.gz
wslay: Sync with upstream 45d22583b
https://github.com/tatsuhiro-t/wslay/commit/45d22583b488f79d5a4e598cc7675c191c5ab53f Mostly style changes, a couple new methods and fixes. Tweak file structure a bit.
Diffstat (limited to 'thirdparty/wslay/wslay_stack.h')
-rw-r--r--thirdparty/wslay/wslay_stack.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/thirdparty/wslay/wslay_stack.h b/thirdparty/wslay/wslay_stack.h
deleted file mode 100644
index 16e4e968eb..0000000000
--- a/thirdparty/wslay/wslay_stack.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Wslay - The WebSocket Library
- *
- * Copyright (c) 2011, 2012 Tatsuhiro Tsujikawa
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
-#ifndef WSLAY_STACK_H
-#define WSLAY_STACK_H
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif /* HAVE_CONFIG_H */
-
-#include <wslay/wslay.h>
-
-struct wslay_stack_cell {
- void *data;
- struct wslay_stack_cell *next;
-};
-
-struct wslay_stack {
- struct wslay_stack_cell *top;
-};
-
-struct wslay_stack* wslay_stack_new();
-void wslay_stack_free(struct wslay_stack *stack);
-int wslay_stack_push(struct wslay_stack *stack, void *data);
-void wslay_stack_pop(struct wslay_stack *stack);
-void* wslay_stack_top(struct wslay_stack *stack);
-int wslay_stack_empty(struct wslay_stack *stack);
-
-#endif /* WSLAY_STACK_H */