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


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.c

    r74965d2 rb510d52  
    5151static char *cmdname = "ls";
    5252
    53 unsigned int ls_scope(const char *path)
     53static unsigned int ls_scope(const char *path)
    5454{
    5555        int fd;
     
    7171}
    7272
    73 void ls_scan_dir(const char *d, DIR *dirp)
     73static void ls_scan_dir(const char *d, DIR *dirp)
    7474{
    7575        struct dirent *dp;
     
    119119 * Now we just print basic DOS style lists */
    120120
    121 void ls_print_dir(const char *d)
     121static void ls_print_dir(const char *d)
    122122{
    123123        printf("%-40s\t<DIR>\n", d);
     
    126126}
    127127
    128 void ls_print_file(const char *f)
     128static void ls_print_file(const char *f)
    129129{
    130130        printf("%-40s\n", f);
Note: See TracChangeset for help on using the changeset viewer.