mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
13 lines
240 B
C
13 lines
240 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
|
|
extern const char version_and_features[];
|
|
|
|
static inline void
|
|
print_version_and_features(const char *prefix)
|
|
{
|
|
fputs(prefix, stdout);
|
|
fputs(version_and_features, stdout);
|
|
fputc('\n', stdout);
|
|
}
|