brintos

brintos / linux-shallow public Read only

0
0
Text · 536 B · fa90252 Raw
19 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Copyright (C) STMicroelectronics SA 20154 * Authors: Hugues Fruchet <hugues.fruchet@st.com>5 *          Fabrice Lecoultre <fabrice.lecoultre@st.com>6 *          for STMicroelectronics.7 */8 9#ifndef DELTA_DEBUG_H10#define DELTA_DEBUG_H11 12char *delta_streaminfo_str(struct delta_streaminfo *s, char *str,13			   unsigned int len);14char *delta_frameinfo_str(struct delta_frameinfo *f, char *str,15			  unsigned int len);16void delta_trace_summary(struct delta_ctx *ctx);17 18#endif /* DELTA_DEBUG_H */19