Home | History | Annotate | Download | only in fsverity-utils
      1 /* SPDX-License-Identifier: GPL-2.0+ */
      2 #ifndef COMMANDS_H
      3 #define COMMANDS_H
      4 
      5 #include <stdio.h>
      6 
      7 #include "util.h"
      8 
      9 struct fsverity_command;
     10 
     11 void usage(const struct fsverity_command *cmd, FILE *fp);
     12 
     13 int fsverity_cmd_enable(const struct fsverity_command *cmd,
     14 			int argc, char *argv[]);
     15 int fsverity_cmd_setup(const struct fsverity_command *cmd,
     16 		       int argc, char *argv[]);
     17 int fsverity_cmd_measure(const struct fsverity_command *cmd,
     18 			 int argc, char *argv[]);
     19 
     20 #endif /* COMMANDS_H */
     21