progress on base

This commit is contained in:
2025-02-01 20:42:40 -05:00
parent 708fed034b
commit 73fe526501
14 changed files with 313 additions and 70 deletions
+5 -6
View File
@@ -1,7 +1,6 @@
#ifdef MD_INTELLISENSE_DIRECTIVES
#pragma once
#include "base_types.h"
#include
#include "strings.h"
#endif
@@ -14,12 +13,12 @@
typedef struct CmdLineOpt CmdLineOpt;
struct CmdLineOpt
{
CmdLineOpt *next;
CmdLineOpt *hash_next;
U64 hash;
String8 string;
CmdLineOpt* next;
CmdLineOpt* hash_next;
U64 hash;
String8 string;
String8List value_strings;
String8 value_string;
String8 value_string;
};
typedef struct CmdLineOptList CmdLineOptList;