This commit is contained in:
2025-07-24 22:44:55 -04:00
parent 444b22d2d5
commit 9159ad533f
2 changed files with 8 additions and 7 deletions

View File

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