first commit

This commit is contained in:
cyy_mac
2026-06-16 08:44:45 +08:00
commit 938e3e04ac
57 changed files with 2396 additions and 0 deletions

13
album/album.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef ALBUM_H
#define ALBUM_H
#define ALBUM_MAX 10
void album_init(const char *paths[], int count);
void album_show(int idx);
void album_prev(void);
void album_next(void);
int album_current(void);
int album_count(void);
#endif