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


Ignore:
Timestamp:
2011-04-01T12:00:23Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ba63912
Parents:
73aec008 (diff), 1e2629f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge 'ls' improvements from Jerome Portal.

File:
1 edited

Legend:

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

    r73aec008 ra30e435  
    77#define LS_DIR   2
    88
    9 static void ls_scan_dir(const char *, DIR *);
     9static void ls_scan_dir(const char *, DIR *, int);
    1010static void ls_print(const char *, const char *);
     11
     12/** Structure to represent a directory entry.
     13 *
     14 * Useful to keep together important informations
     15 * for sorting directory entries.
     16 */
     17struct dir_elem_t {
     18        char * name;
     19        int isdir;
     20};
    1121
    1222#endif /* LS_H */
Note: See TracChangeset for help on using the changeset viewer.