introspection.c (334B)
1 // Copyright 2025 Nick Brassel (@tzarc) 2 // SPDX-License-Identifier: GPL-2.0-or-later 3 4 hello_world_introspection_t hello_world_introspection(void) { 5 hello_world_introspection_t introspection = { 6 .total_size = sizeof(keymaps), 7 .layer_count = sizeof(keymaps) / sizeof(keymaps[0]), 8 }; 9 return introspection; 10 }