move files to src/ directory and add build/ to .gitignore

This commit is contained in:
2025-08-05 17:34:42 -04:00
parent 914ce0d7ad
commit 96a18b8cdb
9 changed files with 1 additions and 0 deletions

10
src/home.h Normal file
View File

@@ -0,0 +1,10 @@
/* SPDX-License-Identifier: MIT */
#ifndef HOME_H /* header guard */
#define HOME_H
#include "screens.h"
void draw_home(struct Screen *screen, char *input);
#endif