11 lines
168 B
C
11 lines
168 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef HOME_H /* header guard */
|
|
#define HOME_H
|
|
|
|
#include "globals.h"
|
|
|
|
void draw_home(struct Screen *screen, char *input);
|
|
|
|
#endif
|