Changeset b510d52 in mainline for uspace/app/bdsh/cmds/modules/ls/ls.h


Ignore:
Timestamp:
2008-08-25T05:38:01Z (16 years ago)
Author:
Tim Post <echo@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e2ea8d7e
Parents:
74965d2
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/ls/ls.h

    r74965d2 rb510d52  
    77#define LS_DIR   2
    88
    9 /* Protoypes for non entry points, intrinsic to ls. Stuff like ls_scope()
    10  * is also duplicated in rm, while rm sort of duplicates ls_scan_dir().
    11  * TODO make some more shared functions and don't expose the stuff below */
    12 extern unsigned int ls_scope(const char *);
    13 extern void ls_scan_dir(const char *, DIR *);
    14 extern void ls_print_dir(const char *);
    15 extern void ls_print_file(const char *);
     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 *);
    1614
    1715#endif /* LS_H */
Note: See TracChangeset for help on using the changeset viewer.