From 81ac62f96c97873a16d6e397f0f54a89d7883b0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20B=C3=A4rtschi?= Date: Thu, 19 Jun 2025 08:56:09 +0200 Subject: [PATCH] some changes --- store/ini.odin | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/store/ini.odin b/store/ini.odin index 6b3d6c8..77a833e 100644 --- a/store/ini.odin +++ b/store/ini.odin @@ -17,4 +17,11 @@ ini_unmarshal :: proc(data: string, v: ^$T, allocator := context.allocator) -> I fields := reflect.struct_fields_zipped(T) + for field in fields { + + } +} + +ini_bool_default :: proc(field: reflect.Struct_Field) { + val, ok := reflect.struct_tag_lookup(field.tag, "ini") }