moved code here. still needs to update gh

This commit is contained in:
klein panic
2025-02-24 15:18:44 -05:00
parent 9ca9f577a4
commit 2726432fe1
106 changed files with 4816 additions and 0 deletions

10
mpvd/include/dir.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef DIR_H
#define DIR_H
#define MAX_PATH_LEN 512 // Declare MAX_PATH_LEN for use across files
char* get_music_directory();
char** load_songs(int *count, const char *music_dir);
void navigate_directory(const char *dir, char **songs, int *song_count); // Declare navigate_directory
#endif