Systemd/src/shared/qrcode-util.h
Lennart Poettering da3920c3a4 journal: move qrcode printing code to src/shared/
That way we can make use of it in homctl, too.
2020-08-25 17:58:02 +02:00

10 lines
167 B
C

/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
#if HAVE_QRENCODE
#include <qrencode.h>
#include <stdio.h>
void write_qrcode(FILE *output, QRcode *qr);
#endif