save
This commit is contained in:
26
yait/format.h
Normal file
26
yait/format.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef CORE_H
|
||||
#define CORE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef enum {
|
||||
OPENBSD3,
|
||||
GPLv3,
|
||||
MIT,
|
||||
UNLICENCE,
|
||||
} licence_t;
|
||||
|
||||
typedef enum {
|
||||
RAYLIB,
|
||||
WINAPI,
|
||||
cURL,
|
||||
} lib_t;
|
||||
|
||||
typedef struct {
|
||||
bool nogit;
|
||||
licence_t licence;
|
||||
char *name;
|
||||
lib_t libraries[];
|
||||
} format_t;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user