blob: cca15d4b4730cff611dc7fbe4d53c32093a11e34 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef OMC_WHEEL_H
#define OMC_WHEEL_H
#include <dirent.h>
#include <string.h>
#include <stdio.h>
#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 //OMC_WHEEL_H
|