summaryrefslogtreecommitdiffstats
path: root/src/include/console/vtxprintf.h
blob: 4a611615277fcf525ce23ca2c5b523c8d8e5d1a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __CONSOLE_VTXPRINTF_H
#define __CONSOLE_VTXPRINTF_H

#include <stdarg.h>

int vtxprintf(void (*tx_byte)(unsigned char byte, void *data),
	const char *fmt, va_list args, void *data);

#endif