Just thiknking about how to put it all together.

This commit is contained in:
2021-07-29 10:01:58 -07:00
parent 6a666b64ca
commit 289e6fccfc
14 changed files with 233 additions and 23 deletions

View File

@ -0,0 +1,25 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include "../libs.h"
#define LANGUAGE_STRING_MAX 512
typedef struct {
char *name;
char *value;
} languagevariable_t;
typedef struct {
char *key;
} languagestring_t;
typedef struct {
languagestring_t strings[LANGUAGE_STRING_MAX];
int32_t stringCount;
} language_t;