mirror of
https://github.com/ctm/executor.git
synced 2025-02-22 09:28:58 +00:00
16 lines
437 B
C
16 lines
437 B
C
|
|
||
|
/* view.c */
|
||
|
void changeview (short view, Rect * r);
|
||
|
void iconview (void);
|
||
|
void icsview (void);
|
||
|
void listingview (void);
|
||
|
void updatewin (...);
|
||
|
void sortwin (int (*f) (const void *, const void *), short order);
|
||
|
int namecmp (const void *x, const void *y);
|
||
|
void namesort (void);
|
||
|
int datecmp (const void *x, const void *y);
|
||
|
void moddatesort (void);
|
||
|
int sizecmp (const void *x, const void *y);
|
||
|
void sizesort (void);
|
||
|
void defaultsort (void);
|