summaryrefslogtreecommitdiffstats
path: root/include/libnftnl/regs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libnftnl/regs.h')
-rw-r--r--include/libnftnl/regs.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/libnftnl/regs.h b/include/libnftnl/regs.h
deleted file mode 100644
index 7df79ec..0000000
--- a/include/libnftnl/regs.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef _LIBNFTNL_REGS_H_
-#define _LIBNFTNL_REGS_H_
-
-#include <stdint.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct nftnl_regs;
-struct nftnl_expr;
-
-struct nftnl_regs *nftnl_regs_alloc(uint32_t num_regs);
-void nftnl_regs_free(const struct nftnl_regs *regs);
-
-uint32_t nftnl_reg_get(struct nftnl_regs *regs, const struct nftnl_expr *expr);
-uint32_t nftnl_reg_get_scratch(struct nftnl_regs *regs, uint32_t len);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /* _LIBNFTNL_REGS_H_ */