Add missing prefix

This commit is contained in:
Johannes Marbach 2021-09-25 12:56:56 +02:00
parent 482953d769
commit 33e4660f97
2 changed files with 2 additions and 2 deletions

View file

@ -128,7 +128,7 @@ static int get_destination_layer_index_for_layer_switcher(lv_obj_t *keyboard, ui
* Public functions
*/
sq2lv_layout_id_t find_layout_with_short_name(const char *name) {
sq2lv_layout_id_t sq2lv_find_layout_with_short_name(const char *name) {
for (int i = 0; i < sq2lv_num_layouts; ++i) {
if (strcmp(sq2lv_layouts[i].short_name, name) == 0) {
return i;

View file

@ -29,7 +29,7 @@
* @param name layout short name
* @return ID of the first matching layout or SQ2LV_LAYOUT_NONE if no layout matched
*/
sq2lv_layout_id_t find_layout_with_short_name(const char *name);
sq2lv_layout_id_t sq2lv_find_layout_with_short_name(const char *name);
/**
* Apply a layout to a keyboard.