source: mainline/uspace/app/bdsh/cmds/modules/ls/ls.h@ a716a75

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since a716a75 was a716a75, checked in by Jerome Portal <jeromeportal1@…>, 15 years ago

add alphabetical sort for ls command

  • Property mode set to 100644
File size: 310 bytes
Line 
1#ifndef LS_H
2#define LS_H
3
4/* Various values that can be returned by ls_scope() */
5#define LS_BOGUS 0
6#define LS_FILE 1
7#define LS_DIR 2
8
9static void ls_sort_dir(const char *, char **, int);
10static void ls_scan_dir(const char *, DIR *);
11static void ls_print(const char *, const char *);
12
13#endif /* LS_H */
14
Note: See TracBrowser for help on using the repository browser.