This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbfido/fsort.h

21 lines
281 B
C
Raw Permalink Normal View History

2009-05-15 20:01:56 +00:00
#ifndef _FSORT_H
#define _FSORT_H
typedef struct _fd_list {
struct _fd_list *next;
char fname[65];
time_t fdate;
} fd_list;
void tidy_fdlist(fd_list **);
void fill_fdlist(fd_list **, char *, time_t);
void sort_fdlist(fd_list **);
char *pull_fdlist(fd_list **);
#endif