Skip to content
Snippets Groups Projects
Select Git revision
  • 1241958d8a6303d2897f0040e52d882a9df54d28
  • master default
2 results

commands.c

Blame
  • Forked from sce213ta / mysh-1
    Source project has a limited visibility.
    commands.c 211 B
    #include "commands.h"
    #include "built_in.h"
    
    struct built_in_command built_in_commands[] = {
      { "cd", do_cd, validate_cd_argv },
      { "pwd", do_pwd, validate_pwd_argv },
      { "fg", do_fg, validate_fg_argv }
    };