This commit is contained in:
2025-07-24 22:00:11 -04:00
parent d6845e89d0
commit 444b22d2d5
2 changed files with 12 additions and 12 deletions

View File

@@ -12,8 +12,8 @@ typedef enum
BSD3, /* BSD 3-Clause License */
GPLv3, /* GNU General Public License v3 */
MIT, /* MIT License */
UNLICENCE, /* Unlicense */
} licence_t;
UNlicense, /* Unlicense */
} license_t;
/* Library type enumeration - using bit flags for multiple selection */
typedef enum
@@ -42,7 +42,7 @@ typedef struct
/* Project configuration structure */
typedef struct
{
licence_t licence; /* License type for the project */
license_t licence; /* License type for the project */
char *project; /* Project name */
char *name; /* Author/creator name */
lib_flags_t libraries; /* Selected libraries (bit field) */