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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 39463ff was b510d52, checked in by Tim Post <echo@…>, 17 years ago

Fix command description display, only command entry points need to be exposed.

  • Property mode set to 100644
File size: 333 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
9
10static unsigned int ls_scope(const char *);
11static void ls_scan_dir(const char *, DIR *);
12static void ls_print_dir(const char *);
13static void ls_print_file(const char *);
14
15#endif /* LS_H */
16
Note: See TracBrowser for help on using the repository browser.