source: mainline/uspace/app/bdsh/cmds/modules/module_aliases.h@ ed903174

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since ed903174 was 0cb2d72, checked in by Jakub Jermar <jakub@…>, 16 years ago

Add dummy unmount command to bdsh.

  • Property mode set to 100644
File size: 618 bytes
Line 
1#ifndef MODULE_ALIASES_H
2#define MODULE_ALIASES_H
3
4/* Modules that declare multiple names for themselves but use the
5 * same entry functions are aliases. This array helps to determine if
6 * a module is an alias, as such it can be invoked differently.
7 * format is alias , real_name */
8
9/* So far, this is only used in the help display but could be used to
10 * handle a module differently even prior to reaching its entry code.
11 * For instance, 'exit' could behave differently than 'quit', prior to
12 * the entry point being reached. */
13
14char *mod_aliases[] = {
15 "ren", "mv",
16 "umount", "unmount",
17 NULL, NULL
18};
19
20#endif
Note: See TracBrowser for help on using the repository browser.