From 17178535cc9df5e834dfd43e3b2b919e02e5798d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 26 Oct 2023 19:53:29 -0400 Subject: Initial commit --- include/wheel.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 include/wheel.h (limited to 'include/wheel.h') diff --git a/include/wheel.h b/include/wheel.h new file mode 100644 index 0000000..20ac641 --- /dev/null +++ b/include/wheel.h @@ -0,0 +1,21 @@ +#ifndef OHMYCAL_WHEEL_H +#define OHMYCAL_WHEEL_H + +#include +#include +#include +#include "str.h" + +struct Wheel { + char *distribution; + char *version; + char *build_tag; + char *python_tag; + char *abi_tag; + char *platform_tag; + char *path_name; + char *file_name; +}; + +struct Wheel *get_wheel_file(const char *basepath, const char *name, char *to_match[]); +#endif //OHMYCAL_WHEEL_H -- cgit