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