diff --git a/src/mu-cmd-find.c b/src/mu-cmd-find.c index 885ac75c..1476b5c4 100644 --- a/src/mu-cmd-find.c +++ b/src/mu-cmd-find.c @@ -336,3 +336,17 @@ mu_cmd_find (MuConfigOptions *opts) return rv; } + + + + +gboolean +mu_cmd_view (MuConfigOptions *opts) +{ + g_return_val_if_fail (opts, FALSE); + + return TRUE; /* FIXME */ +} + + + diff --git a/src/mu-cmd-find.h b/src/mu-cmd-find.h index 61c89a74..786b169e 100644 --- a/src/mu-cmd-find.h +++ b/src/mu-cmd-find.h @@ -23,6 +23,24 @@ #include #include "mu-config.h" +/** + * execute the 'find' command + * + * @param opts configuration options + * + * @return TRUE if the command succeede, FALSE otherwise + */ gboolean mu_cmd_find (MuConfigOptions *opts); + +/** + * execute the 'view' command + * + * @param opts configuration options + * + * @return TRUE if the command succeede, FALSE otherwise + */ +gboolean mu_cmd_view (MuConfigOptions *opts); + + #endif /*__MU_CMD_FIND_H__*/