mirror of
https://gitlab.com/hyperglitch/jellyfish.git
synced 2025-12-26 23:16:46 +00:00
16 lines
212 B
C
16 lines
212 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Igor Brkic <igor@hyperglitch.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#ifndef UI_H
|
|
#define UI_H
|
|
|
|
void ui_init();
|
|
|
|
|
|
void ui_task(void *argument);
|
|
|
|
#endif //UI_H
|