1 #ifndef PLAYLIST_FILE_H
2 #define PLAYLIST_FILE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 int plist_load (struct plist *plist, const char *fname, const char *cwd,
9 		const int load_serial);
10 int plist_save (struct plist *plist, const char *file, const char *cwd,
11 		const int save_serial);
12 int is_plist_file (const char *name);
13 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif
19