From 069009f8e39238ec1a67fba6cfb287b9a0cac83e Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Fri, 24 Mar 2023 10:07:48 +0100 Subject: Re-organize project and add license header --- cooker/gluten.h | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 cooker/gluten.h (limited to 'cooker/gluten.h') diff --git a/cooker/gluten.h b/cooker/gluten.h deleted file mode 100644 index 440029d..0000000 --- a/cooker/gluten.h +++ /dev/null @@ -1,36 +0,0 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later - * Copyright 2023 Red Hat GmbH - * Author: Stefano Brivio - */ - -#ifndef GLUTEN_H -#define GLUTEN_H - -struct gluten_arg_data { - int offset; - size_t len; -}; - -struct gluten_ref_data { - int name; - int offset; - size_t len; -}; - -struct gluten_ctx { - int ip; - int lr; - int sp; - char *gluten; - - struct gluten_arg_data match_dst[CALL_ARGS]; - struct gluten_arg_data call_src[CALL_ARGS]; - - struct gluten_ref_data refs[REFS_MAX]; -}; - -int gluten_alloc(struct gluten_ctx *g, size_t size); -int gluten_alloc_type(struct gluten_ctx *g, enum arg_type type); -int gluten_init(struct gluten_ctx *g); - -#endif /* GLUTEN_H */ -- cgit v1.2.3