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") }