15 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright 2023 Red Hat4 */5 6#ifndef VDO_MESSAGE_STATS_H7#define VDO_MESSAGE_STATS_H8 9#include "types.h"10 11int vdo_write_config(struct vdo *vdo, char **buf, unsigned int *maxlen);12int vdo_write_stats(struct vdo *vdo, char *buf, unsigned int maxlen);13 14#endif /* VDO_MESSAGE_STATS_H */15